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 | c85c01c622388bb14fc4f61ca92b6cfd847c4191 (patch) | |
tree | c05586ff8a436e712a9c1f5a0d3fe52fe5a73bb8 /coverage/html.py | |
parent | f1dc0948bbfe48e83c6af2520f5bdb50460d587d (diff) | |
download | python-coveragepy-git-c85c01c622388bb14fc4f61ca92b6cfd847c4191.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 f04339de..14771dd2 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. |