Forgot a comma

This commit is contained in:
Phyks 2014-11-05 14:46:39 +01:00
parent 2e6d9c0f79
commit 3e6d5f490f

View File

@ -88,7 +88,7 @@ class Config():
try: try:
with open(self.config_path + "bmc.json", 'w') as fh: with open(self.config_path + "bmc.json", 'w') as fh:
fh.write(json.dumps(self.config, fh.write(json.dumps(self.config,
sort_keys=True sort_keys=True,
indent=4, indent=4,
separators=(',', ': '))) separators=(',', ': ')))
except IOError: except IOError: