From 6e30125fb8a40c8e5371c074bc72079b23f5795b Mon Sep 17 00:00:00 2001 From: desvox Date: Tue, 14 Aug 2018 22:19:20 -0500 Subject: [PATCH] Fix stupid typo preventing new configs being made. --- server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.py b/server.py index a923e18..9d509b9 100644 --- a/server.py +++ b/server.py @@ -33,7 +33,7 @@ try: app_config[key] = default_value # else just use the defaults except FileNotFoundError: - app_config = default_prefs + app_config = default_config finally: with open("config.json", "w") as _out: json.dump(app_config, _out, indent=2)