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
commitcac60611433490b85e337be3c53299a9406fd098 (patch)
treeee544da31aaa8eca69014a86c82deb950a7ffca4 /coverage/html.py
parent6cda7f1fda3e087b1128b40d73fb4da8486b4b05 (diff)
downloadpython-coveragepy-git-cac60611433490b85e337be3c53299a9406fd098.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 19898cbe..5b792c7e 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"