Forgot a comma

This commit is contained in:
Phyks 2014-11-05 14:46:39 +01:00
parent 2e6d9c0f79
commit 3e6d5f490f
1 changed files with 1 additions and 1 deletions

View File

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