starsdb: fix UPDATE command in dbCorrection

This commit is contained in:
2024-05-22 14:17:39 +02:00
parent b8e9c5b97f
commit d29d23bccc
+1 -1
View File
@@ -93,7 +93,7 @@ class StarDB():
self.connection.commit()
def dbCorrection(self):
self.dbCursor.execute("""UPDATE TABLE starInfo
self.dbCursor.execute("""UPDATE starInfo
SET spType = "-"
WHERE spType IS NULL
OR length(spType) = 0;""")