diff options
| author | Mauro Carvalho Chehab <mchehab@kernel.org> | 2024-03-14 06:55:42 +0100 |
|---|---|---|
| committer | Mauro Carvalho Chehab <mchehab@kernel.org> | 2024-03-15 10:18:03 +0100 |
| commit | b03aa30a44059601dd6803d8b1797a67b6482f29 (patch) | |
| tree | 2e3eaa730ccac9edc0fba6ff00abbeef64715607 /scripts | |
| parent | 574162f9184f4c5d5c8fea9bc16b009ba2f0f81d (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-x | scripts/xls_to_doc.py | 2 |
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 |
