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

index 9bd599813f16e917d77e090a1fbab7a78fe91e7c..abd39c957b5ba2009f4318577b99c0de9a943537 100755 (executable)
@@ -21,15 +21,15 @@ except KeyError:
        pass
 
 # get the secrets ready
-with open(path.join(app.root_path, "..", "secrets.json"), "r") as f:
+with open(path.join(app.root_path, "..", "secrets.json"), "r", encoding="utf-8") as f:
        users = json.loads(f.read())
 users = {k: generate_password_hash(v) for (k, v) in users.items()}
 
 # get the static data ready
-with open(path.join(app.root_path, "static", "static.json"), "r") as f:
+with open(path.join(app.root_path, "static", "static.json"), "r", encoding="utf-8") as f:
        static_data = json.loads(f.read())
 
-with open(path.join(app.root_path, "static", "info.json"), "r") as f:
+with open(path.join(app.root_path, "static", "info.json"), "r", encoding="utf-8") as f:
        static_info = json.loads(f.read())