Fix bug in status label import

This commit is contained in:
Veronica Berglyd Olsen
2024-12-31 00:59:25 +01:00
parent 5911c43b5b
commit b4f1d0ec77
2 changed files with 3 additions and 0 deletions
+1
View File
@@ -570,6 +570,7 @@ class _StatusPage(NFixedPage):
for row in csv.reader(fo):
if entry := self._store.fromRaw(row):
self._addItem(None, entry)
self._changed = True
except Exception as exc:
SHARED.error("Could not read file.", exc=exc)
return