summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@kernel.org>2024-03-14 06:55:42 +0100
committerMauro Carvalho Chehab <mchehab@kernel.org>2024-03-15 10:18:03 +0100
commitb03aa30a44059601dd6803d8b1797a67b6482f29 (patch)
tree2e3eaa730ccac9edc0fba6ff00abbeef64715607 /scripts
parent574162f9184f4c5d5c8fea9bc16b009ba2f0f81d (diff)
scripts/xls_to_doc.py: don't ignore the last column
Currently the last line of the spreadsheet is not processed. Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/xls_to_doc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/xls_to_doc.py b/scripts/xls_to_doc.py
index f47d56719..bd14320a3 100755
--- a/scripts/xls_to_doc.py
+++ b/scripts/xls_to_doc.py
@@ -103,7 +103,7 @@ class FillTests(TestList):
for cell in sheet[1]:
column_list.append(cell.value)
- for row in range(2, sheet.max_row):
+ for row in range(2, sheet.max_row + 1):
if sheet[row][0].value is None:
print(f"Ignoring sheet after A{row} row, as test name is empty")
return