diff options
author | Daniel Kirchner <daniel@ekpyron.org> | 2018-09-03 21:16:24 +0800 |
---|---|---|
committer | Daniel Kirchner <daniel@ekpyron.org> | 2018-09-04 17:30:30 +0800 |
commit | b4a02522a46a774d0bd201c5a9c312bf3aeb2565 (patch) | |
tree | 2a1d574620753aa4be93f60bb9372fe0d48257fe /scripts | |
parent | a102f3b783dec236e9a733f5a5338efce3ef8319 (diff) | |
download | dexon-solidity-b4a02522a46a774d0bd201c5a9c312bf3aeb2565.tar.gz dexon-solidity-b4a02522a46a774d0bd201c5a9c312bf3aeb2565.tar.zst dexon-solidity-b4a02522a46a774d0bd201c5a9c312bf3aeb2565.zip |
Update generation of bugs_by_version.json.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/update_bugs_by_version.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/update_bugs_by_version.py b/scripts/update_bugs_by_version.py index 68ccd72a..655ffe23 100755 --- a/scripts/update_bugs_by_version.py +++ b/scripts/update_bugs_by_version.py @@ -35,7 +35,7 @@ for v in versions: continue versions[v]['bugs'] += [bug['name']] -new_contents = json.dumps(versions, sort_keys=True, indent=4) +new_contents = json.dumps(versions, sort_keys=True, indent=4, separators=(',', ': ')) with open(path + '/../docs/bugs_by_version.json', 'r') as bugs_by_version: old_contents = bugs_by_version.read() with open(path + '/../docs/bugs_by_version.json', 'w') as bugs_by_version: |