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
commit29257d4d11ec8475776a218e3cf31378adc18140 (patch)
tree9c8a02c7f916c01291a19f81032408a3b35ef583 /coverage/html.py
parent998b4e07d8af4d241e70c7cca18a0f72f8ca74dd (diff)
downloadpython-coveragepy-29257d4d11ec8475776a218e3cf31378adc18140.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 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.