Commit 271b2bf1 authored by Yuxin Wu's avatar Yuxin Wu
parent 1021b385
...@@ -52,7 +52,7 @@ class PythonScript(threading.Thread): ...@@ -52,7 +52,7 @@ class PythonScript(threading.Thread):
else: else:
# something unexpected happend here, this script was supposed to survive at leat the timeout # something unexpected happend here, this script was supposed to survive at leat the timeout
if len(self.err) is not 0: if len(self.err) is not 0:
stderr = "\n\n\n\n\n %s" % self.err stderr = u"\n\n\n\n\n" + self.err.decode('utf-8')
raise AssertionError(stderr) raise AssertionError(stderr)
......
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