summaryrefslogtreecommitdiff
path: root/coverage/html.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2016-11-29 20:22:54 -0500
committerNed Batchelder <ned@nedbatchelder.com>2016-11-29 20:22:54 -0500
commitc85c01c622388bb14fc4f61ca92b6cfd847c4191 (patch)
treec05586ff8a436e712a9c1f5a0d3fe52fe5a73bb8 /coverage/html.py
parentf1dc0948bbfe48e83c6af2520f5bdb50460d587d (diff)
downloadpython-coveragepy-git-c85c01c622388bb14fc4f61ca92b6cfd847c4191.tar.gz
status.json file is more compact
Diffstat (limited to 'coverage/html.py')
-rw-r--r--coverage/html.py2
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.