]> OzVa Git service - shopping-channel/commitdiff
Added explicit encoding to sanity check
authorMax Value <greenwoodw50@gmail.com>
Tue, 18 Mar 2025 03:33:17 +0000 (03:33 +0000)
committerMax Value <greenwoodw50@gmail.com>
Tue, 18 Mar 2025 03:33:17 +0000 (03:33 +0000)
teleshopping.py

index 170fb267694a11f7098364ecb3fa1777a3347372..bc1cd41327c761715680e557d7d88e2e5b273f39 100755 (executable)
@@ -218,7 +218,7 @@ def generate_docs():
                print(f" - Generated {document}")
 
 # sanity check on the db
-with open(path.join(app.root_path, "schema"), "r") as f:
+with open(path.join(app.root_path, "schema"), "r", encoding="utf-8") as f:
        schema, load = f.read().split("\n\n")
        with sqlite3.connect(path.join(app.root_path, "data.db")) as connection:
                cursor = connection.cursor()