Don't sort config keys

master
Arinerron 2018-06-13 21:42:19 -07:00
parent b5c06ce64c
commit debd123ffc
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ def save():
check()
try:
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:
logger.warn('Failed to write to configuration file.')