Fix spreadsheet revision logic

This commit is contained in:
Avram Lubkin 2023-07-13 11:11:54 -04:00 коммит произвёл Avram Lubkin
Родитель 3e1f7f1d9e
Коммит 1431bc7fa4
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -281,7 +281,7 @@ class Spreadsheet:
# whats missing, it becomes hard to state where the patch is present.
missing_patch = subject.missingPatches.filter_by(patchID=patch_id).one_or_none()
worksheet.get_cell(distro, commit_cell.row).value = (
subject.revision if missing_patch is None else "Absent"
"Absent" if missing_patch is None else subject.revision
)
LOGGER.info("Updates evaluated for %s rows", total_rows)