diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-10-24 12:20:24 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-10-24 12:20:24 -0400 |
commit | a76d63809c96078c49d4858073aeaf5a7bd63fd5 (patch) | |
tree | 8ea2c38ef64412bdb0a27b2ac22ab75d19e627d2 /coverage/html.py | |
parent | 0662e384a3911f84a09b92029446f6722f9340d5 (diff) | |
download | python-coveragepy-git-a76d63809c96078c49d4858073aeaf5a7bd63fd5.tar.gz |
Tidy up long lines
Diffstat (limited to 'coverage/html.py')
-rw-r--r-- | coverage/html.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/coverage/html.py b/coverage/html.py index d5811317..9a68b2c1 100644 --- a/coverage/html.py +++ b/coverage/html.py @@ -116,7 +116,8 @@ class HtmlReporter(Reporter): line_class = "" if lineno in analysis.statements: line_class += " stm" - if lineno not in analysis.missing and lineno not in analysis.excluded: + if lineno not in analysis.missing and \ + lineno not in analysis.excluded: line_class += c_run if lineno in analysis.excluded: line_class += c_exc |