diff options
author | Jon Chappell <jon@jchome.us> | 2015-04-13 12:42:46 -0400 |
---|---|---|
committer | Jon Chappell <jon@jchome.us> | 2015-04-13 12:42:46 -0400 |
commit | 15cd59abfafdf555cac1562f4b083d909806bf05 (patch) | |
tree | 5f1ff5e658593cf25749be7558b5ca9f061490cc /coverage/html.py | |
parent | e0ad5837194a4a8cd1a2ddf392c5b0db6a80e705 (diff) | |
download | python-coveragepy-git-15cd59abfafdf555cac1562f4b083d909806bf05.tar.gz |
Convert single quoted html output to use double quotes.
Diffstat (limited to 'coverage/html.py')
-rw-r--r-- | coverage/html.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/html.py b/coverage/html.py index 2a9e0d11..d4a22299 100644 --- a/coverage/html.py +++ b/coverage/html.py @@ -221,7 +221,7 @@ class HtmlReporter(Reporter): else: tok_html = escape(tok_text) or ' ' html.append( - "<span class='%s'>%s</span>" % (tok_type, tok_html) + '<span class="%s">%s</span>' % (tok_type, tok_html) ) lines.append({ |