diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-09-22 22:12:04 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-09-22 22:12:04 -0400 |
commit | 0b96d1ba8b0fb03628a57e255b39243c66751038 (patch) | |
tree | 300b4d351037df0097ed94b158250a9d4a8fc826 /coverage/html.py | |
parent | b2d38d94531ffb559e2cf16248bae507ed81b072 (diff) | |
download | python-coveragepy-git-0b96d1ba8b0fb03628a57e255b39243c66751038.tar.gz |
Simple cleanup
Diffstat (limited to 'coverage/html.py')
-rw-r--r-- | coverage/html.py | 3 |
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: |