提交 a3b0231e authored 作者: Holger Kohr's avatar Holger Kohr

BUG: fix bytes/string concat error, closes #5887

上级 b547aa90
...@@ -1795,7 +1795,7 @@ class Compiler(object): ...@@ -1795,7 +1795,7 @@ class Compiler(object):
if err is None: if err is None:
err = str(e) err = str(e)
else: else:
err += "\n" + str(e) err = str(err) + "\n" + str(e)
compilation_ok = False compilation_ok = False
if not try_run and not output: if not try_run and not output:
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论