From d178f3d1b9fd79b5fd5edad70195d354207d3950 Mon Sep 17 00:00:00 2001 From: Marc-Andre Ferland Date: Sun, 23 Oct 2022 15:01:11 -0400 Subject: [PATCH] Missing 'e' --- ui/server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/server.py b/ui/server.py index 34302cd1..6125affe 100644 --- a/ui/server.py +++ b/ui/server.py @@ -223,7 +223,7 @@ def setConfig(config): config_json_path = os.path.join(CONFIG_DIR, 'config.json') with open(config_json_path, 'w', encoding='utf-8') as f: return json.dump(config, f) - except: + except Exception as e: print(str(e)) print(traceback.format_exc())