diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-11-29 20:22:54 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-11-29 20:22:54 -0500 |
commit | 29257d4d11ec8475776a218e3cf31378adc18140 (patch) | |
tree | 9c8a02c7f916c01291a19f81032408a3b35ef583 /coverage/html.py | |
parent | 998b4e07d8af4d241e70c7cca18a0f72f8ca74dd (diff) | |
download | python-coveragepy-29257d4d11ec8475776a218e3cf31378adc18140.tar.gz |
status.json file is more compact
Diffstat (limited to 'coverage/html.py')
-rw-r--r-- | coverage/html.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/html.py b/coverage/html.py index f04339d..14771dd 100644 --- a/coverage/html.py +++ b/coverage/html.py @@ -384,7 +384,7 @@ class HtmlStatus(object): 'files': files, } with open(status_file, "w") as fout: - json.dump(status, fout) + json.dump(status, fout, separators=(',', ':')) # Older versions of ShiningPanda look for the old name, status.dat. # Accommodate them if we are running under Jenkins. |