Fix stupid typo preventing new configs being made.

This commit is contained in:
desvox 2018-08-14 22:19:20 -05:00
parent 1c296cc500
commit 6e30125fb8
1 changed files with 1 additions and 1 deletions

View File

@ -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)