Skip to content
Snippets Groups Projects
Commit 60c81221 authored by Daniel Brown's avatar Daniel Brown
Browse files

Fixing more unicode issues

parent 418afc9e
No related branches found
No related tags found
No related merge requests found
...@@ -1541,8 +1541,8 @@ class kat(object): ...@@ -1541,8 +1541,8 @@ class kat(object):
(stdout, stderr) = p.communicate() (stdout, stderr) = p.communicate()
r.stdout = stdout.decode('unicode_escape') r.stdout = stdout #.decode('unicode_escape')
r.stderr = stderr.decode('unicode_escape') r.stderr = stderr #.decode('unicode_escape')
for line in r.stdout[::-1]: for line in r.stdout[::-1]:
if line.lstrip().startswith('computation time:'): if line.lstrip().startswith('computation time:'):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment