Don't sort config keys
This commit is contained in:
parent
b5c06ce64c
commit
debd123ffc
@ -106,7 +106,7 @@ def save():
|
|||||||
check()
|
check()
|
||||||
try:
|
try:
|
||||||
with open(get_config_file(), 'w', encoding="utf8") as configfile:
|
with open(get_config_file(), 'w', encoding="utf8") as configfile:
|
||||||
json.dump(get_config(), configfile, indent=2, sort_keys=True)
|
json.dump(get_config(), configfile, indent=2)
|
||||||
except:
|
except:
|
||||||
logger.warn('Failed to write to configuration file.')
|
logger.warn('Failed to write to configuration file.')
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user