Merge pull request #4 from jmdejong/patch-1

declare indentation when writing .bbjrc
This commit is contained in:
Blake DeMarcy 2017-06-03 17:18:44 -05:00 committed by GitHub
commit 0ff3ae109f
1 changed files with 1 additions and 1 deletions

View File

@ -2018,7 +2018,7 @@ def bbjrc(mode, **params):
values.update(params)
# we always write
with open(rcpath, "w") as _out:
json.dump(values, _out)
json.dump(values, _out, indent=2)
return values