diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-03-08 06:20:27 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-03-08 06:20:27 -0500 |
commit | 8cc4ffa19dd13d8433878aab3458f6c7572e74b5 (patch) | |
tree | 91bcc5715a213e333674f0d0543ffaa8e757c7d2 /coverage/html.py | |
parent | 95c3003ddc3c3e11203c8b8b54dace4f197b1c4c (diff) | |
download | python-coveragepy-git-8cc4ffa19dd13d8433878aab3458f6c7572e74b5.tar.gz |
Hacked-in Mako support.
Diffstat (limited to 'coverage/html.py')
-rw-r--r-- | coverage/html.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/html.py b/coverage/html.py index d168e351..d890436c 100644 --- a/coverage/html.py +++ b/coverage/html.py @@ -167,7 +167,7 @@ class HtmlReporter(Reporter): # If need be, determine the encoding of the source file. We use it # later to properly write the HTML. if sys.version_info < (3, 0): - encoding = source_encoding(source) + encoding = cu.source_encoding(source) # Some UTF8 files have the dreaded UTF8 BOM. If so, junk it. if encoding.startswith("utf-8") and source[:3] == "\xef\xbb\xbf": source = source[3:] @@ -187,7 +187,7 @@ class HtmlReporter(Reporter): lines = [] - for lineno, line in enumerate(source_token_lines(source), start=1): + for lineno, line in enumerate(cu.source_token_lines(source), start=1): # Figure out how to mark this line. line_class = [] annotate_html = "" |