We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e2a551 commit a41c097Copy full SHA for a41c097
pysrc/juliacall/__init__.py
@@ -27,9 +27,9 @@ def __str__(self):
27
e = self.exception
28
b = self.backtrace
29
if b is None:
30
- return Base.sprint(Base.showerror, e)
+ return Base.sprint(Base.showerror, e).jl_to_py()
31
else:
32
- return Base.sprint(Base.showerror, e, b)
+ return Base.sprint(Base.showerror, e, b).jl_to_py()
33
@property
34
def exception(self):
35
return self.args[0]
0 commit comments