Commit aadeeabb authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Varnish source files are utf-8

parent fe9ec92a
...@@ -63,7 +63,7 @@ def process_gcov(fn, sn): ...@@ -63,7 +63,7 @@ def process_gcov(fn, sn):
dd = counts.get(sn) dd = counts.get(sn)
if dd is None: if dd is None:
dd = {} dd = {}
for ln in open(fn): for ln in open(fn, encoding="UTF-8"):
d = ln.split(":") d = ln.split(":")
cnt = d[0].strip() cnt = d[0].strip()
ll = d[1] ll = d[1]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment