diff options
Diffstat (limited to 'coverage/html.py')
-rw-r--r-- | coverage/html.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/html.py b/coverage/html.py index 7c4dbc0d..e0ccdcab 100644 --- a/coverage/html.py +++ b/coverage/html.py @@ -219,7 +219,7 @@ class HtmlReporter(Reporter): annotate_title = "Line %d was executed, but never jumped to " % lineno if len(longs) == 1: annotate_title += longs[0] - elif len(long) == 2: + elif len(longs) == 2: annotate_title += longs[0] + " or " + longs[1] else: annotate_title += ", ".join(longs[:-1]) + ", or " + longs[-1] |