diff options
-rw-r--r-- | coverage/html.py | 4 | ||||
-rw-r--r-- | test/test_process.py | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/coverage/html.py b/coverage/html.py index 39ee8866..f8de2e4c 100644 --- a/coverage/html.py +++ b/coverage/html.py @@ -112,7 +112,9 @@ class HtmlReporter(Reporter): html.append(escape(tok_text)) else: tok_html = escape(tok_text) or ' ' - html.append("<span class='%s'>%s</span>" % (tok_type, tok_html)) + html.append( + "<span class='%s'>%s</span>" % (tok_type, tok_html) + ) lines.append({ 'html': ''.join(html), diff --git a/test/test_process.py b/test/test_process.py index fcc50200..8e621adf 100644 --- a/test/test_process.py +++ b/test/test_process.py @@ -1,6 +1,6 @@ """Tests for process behavior of coverage.py.""" -import os, sys, textwrap +import os, sys import coverage sys.path.insert(0, os.path.split(__file__)[0]) # Force relative import for Py3k |