summaryrefslogtreecommitdiff
path: root/coverage/html.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-09-22 22:12:04 -0400
committerNed Batchelder <ned@nedbatchelder.com>2009-09-22 22:12:04 -0400
commit0b96d1ba8b0fb03628a57e255b39243c66751038 (patch)
tree300b4d351037df0097ed94b158250a9d4a8fc826 /coverage/html.py
parentb2d38d94531ffb559e2cf16248bae507ed81b072 (diff)
downloadpython-coveragepy-git-0b96d1ba8b0fb03628a57e255b39243c66751038.tar.gz
Simple cleanup
Diffstat (limited to 'coverage/html.py')
-rw-r--r--coverage/html.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/coverage/html.py b/coverage/html.py
index 5d2c561c..c0984084 100644
--- a/coverage/html.py
+++ b/coverage/html.py
@@ -77,8 +77,7 @@ class HtmlReporter(Reporter):
lines = []
for lineno, line in enumerate(source_lines):
- lineno += 1 # enum is 0-based, lines are 1-based.
-
+ lineno += 1 # enumerate is 0-based, lines are 1-based.
css_class = ""
if lineno in statements: