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 | 54d7599e7210626f52a4c218d60dff34419de7f7 (patch) | |
tree | fcf86facdd96adc0443ab5bbaee13d06abf718f0 /coverage/html.py | |
parent | 419c985743548915c472ebd830ddbeef415bf9f0 (diff) | |
download | python-coveragepy-54d7599e7210626f52a4c218d60dff34419de7f7.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 d581131..9a68b2c 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 |