From: Max Value Date: Tue, 18 Mar 2025 03:24:24 +0000 (+0000) Subject: Added encoding spec X-Git-Url: https://git.ozva.co.uk/?a=commitdiff_plain;h=2659fd31fdb7a5835ba4d2ff59a2ae66a621b76e;p=shopping-channel Added encoding spec --- diff --git a/teleshopping.py b/teleshopping.py index 9bd5998..abd39c9 100755 --- a/teleshopping.py +++ b/teleshopping.py @@ -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())