From 2659fd31fdb7a5835ba4d2ff59a2ae66a621b76e Mon Sep 17 00:00:00 2001 From: Max Value Date: Tue, 18 Mar 2025 03:24:24 +0000 Subject: [PATCH] Added encoding spec --- teleshopping.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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()) -- 2.39.2