Fix stupid typo preventing new configs being made.
parent
1c296cc500
commit
6e30125fb8
|
@ -33,7 +33,7 @@ try:
|
||||||
app_config[key] = default_value
|
app_config[key] = default_value
|
||||||
# else just use the defaults
|
# else just use the defaults
|
||||||
except FileNotFoundError:
|
except FileNotFoundError:
|
||||||
app_config = default_prefs
|
app_config = default_config
|
||||||
finally:
|
finally:
|
||||||
with open("config.json", "w") as _out:
|
with open("config.json", "w") as _out:
|
||||||
json.dump(app_config, _out, indent=2)
|
json.dump(app_config, _out, indent=2)
|
||||||
|
|
Loading…
Reference in New Issue