提交 354097d3 authored 作者: Pascal Lamblin's avatar Pascal Lamblin 提交者: GitHub

Merge pull request #5922 from kohr-h/issue-5887__import_error

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