diff --git a/bigchaindb/config_utils.py b/bigchaindb/config_utils.py index 7d469504..81f8ed46 100644 --- a/bigchaindb/config_utils.py +++ b/bigchaindb/config_utils.py @@ -209,7 +209,7 @@ def write_config(config, filename=None): filename = CONFIG_DEFAULT_PATH with open(filename, 'w') as f: - json.dump(config, f) + json.dump(config, f, indent=4) def autoconfigure(filename=None, config=None, force=False):