projects
/
tools
/
libFuzzer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
297c5d7
)
Fix "UnicodeDecodeError: 'ascii' codec can't decode" in coverage-report-dump.py
38/139438/2
author
Maria Guseva
<m.guseva@samsung.com>
Wed, 19 Jul 2017 03:26:18 +0000
(12:26 +0900)
committer
Maria Guseva
<m.guseva@samsung.com>
Thu, 20 Jul 2017 00:34:59 +0000
(09:34 +0900)
Change-Id: Ibaaf285d94ce5ade302983b16b787e55d3c46811
scripts/coverage-report-dump.py
patch
|
blob
|
history
diff --git
a/scripts/coverage-report-dump.py
b/scripts/coverage-report-dump.py
index 3e12e39158907801abd9d0c9597e0594b42be1ec..bf15ac878ee2b806fd7f1bc370ac00547be1a31a 100755
(executable)
--- a/
scripts/coverage-report-dump.py
+++ b/
scripts/coverage-report-dump.py
@@
-153,7
+153,7
@@
class DumpCov():
response = string.Template(CONTENT_PAGE_TMPL).safe_substitute(
path=filename,
- content=content)
+ content=content
.decode('utf-8')
)
html_file = os.path.abspath(self.__dump_root + filename + ".html")
src_dir = os.path.dirname(html_file)