summaryrefslogtreecommitdiff
path: root/coverage/html.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2016-02-08 09:54:24 -0500
committerNed Batchelder <ned@nedbatchelder.com>2016-02-08 09:54:24 -0500
commit429d6ecbc19bf4e742170828e0433481ee0d3b19 (patch)
tree81305a30496855756ef01237518a532d3bca1279 /coverage/html.py
parentf0eb7f779f14cce5fc34581439c25cfa5c13d23a (diff)
downloadpython-coveragepy-429d6ecbc19bf4e742170828e0433481ee0d3b19.tar.gz
missing_arc_description is better than arc_destination_description. One test broken.
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 19898cb..5b792c7 100644
--- a/coverage/html.py
+++ b/coverage/html.py
@@ -220,7 +220,7 @@ class HtmlReporter(Reporter):
shorts.append("exit")
else:
shorts.append(b)
- longs.append(fr.arc_destination_description(b))
+ longs.append(fr.missing_arc_description(lineno, b))
# 202F is NARROW NO-BREAK SPACE.
# 219B is RIGHTWARDS ARROW WITH STROKE.
short_fmt = "%s&#x202F;&#x219B;&#x202F;%s"