Missing 'e'

This commit is contained in:
Marc-Andre Ferland 2022-10-23 15:01:11 -04:00
parent 6e9d73ec64
commit d178f3d1b9

View File

@ -223,7 +223,7 @@ def setConfig(config):
config_json_path = os.path.join(CONFIG_DIR, 'config.json') config_json_path = os.path.join(CONFIG_DIR, 'config.json')
with open(config_json_path, 'w', encoding='utf-8') as f: with open(config_json_path, 'w', encoding='utf-8') as f:
return json.dump(config, f) return json.dump(config, f)
except: except Exception as e:
print(str(e)) print(str(e))
print(traceback.format_exc()) print(traceback.format_exc())