summaryrefslogtreecommitdiff
path: root/coverage/html.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-11-24 22:47:31 -0500
committerNed Batchelder <ned@nedbatchelder.com>2009-11-24 22:47:31 -0500
commit5ea121a40c6ab91b2a35c59ec35217356a7b4e03 (patch)
tree401b95ea2ca436beec7aaac0a91eab2b3e84d266 /coverage/html.py
parent6a54847bbceb31335fef3ea8201e76b6e037abee (diff)
downloadpython-coveragepy-git-5ea121a40c6ab91b2a35c59ec35217356a7b4e03.tar.gz
When partial lines are hidden and run lines are shown, then partial lines are shown as run.
Diffstat (limited to 'coverage/html.py')
-rw-r--r--coverage/html.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/html.py b/coverage/html.py
index fcab6f4a..f8e84acd 100644
--- a/coverage/html.py
+++ b/coverage/html.py
@@ -68,10 +68,10 @@ class HtmlReporter(Reporter):
arcs = self.arcs
# These classes determine which lines are highlighted by default.
- c_run = " run hide"
+ c_run = " run hide_run"
c_exc = " exc"
c_mis = " mis"
- c_par = " par"
+ c_par = " par" + c_run
lines = []