]> OzVa Git service - shopping-channel/commitdiff
Rearranged database check to trigger regardless
authorMax Value <greenwoodw50@gmail.com>
Tue, 18 Mar 2025 03:30:19 +0000 (03:30 +0000)
committerMax Value <greenwoodw50@gmail.com>
Tue, 18 Mar 2025 03:30:19 +0000 (03:30 +0000)
teleshopping.py

index abd39c957b5ba2009f4318577b99c0de9a943537..170fb267694a11f7098364ecb3fa1777a3347372 100755 (executable)
@@ -217,26 +217,26 @@ def generate_docs():
 
                print(f" - Generated {document}")
 
-if __name__ == "__main__":
-       # sanity check on the db
-       with open(path.join(app.root_path, "schema"), "r") as f:
-               schema, load = f.read().split("\n\n")
-               with sqlite3.connect(path.join(app.root_path, "data.db")) as connection:
-                       cursor = connection.cursor()
-                       try:
-                               cursor.execute(load)
-                       except sqlite3.IntegrityError:
-                               print("Database is setup correctly")
-                               pass
-                       except sqlite3.OperationalError:
-                               print("Table missing or corrupt...")
-                               try: cursor.execute("DROP TABLE state;") # catch if there is no table "state"
-                               except: pass
-                               cursor.execute(schema)
-                               cursor.execute(load)
-                       connection.commit()
-
-       print("Generating static documentation...")
-       generate_docs()
+# sanity check on the db
+with open(path.join(app.root_path, "schema"), "r") as f:
+       schema, load = f.read().split("\n\n")
+       with sqlite3.connect(path.join(app.root_path, "data.db")) as connection:
+               cursor = connection.cursor()
+               try:
+                       cursor.execute(load)
+               except sqlite3.IntegrityError:
+                       print("Database is setup correctly")
+                       pass
+               except sqlite3.OperationalError:
+                       print("Table missing or corrupt...")
+                       try: cursor.execute("DROP TABLE state;") # catch if there is no table "state"
+                       except: pass
+                       cursor.execute(schema)
+                       cursor.execute(load)
+               connection.commit()
+
+print("Generating static documentation...")
+generate_docs()
 
+if __name__ == "__main__":
        app.run(host='192.168.0.144', port=8000, debug=True)