Skip to content

Commit 2c90b52

Browse files
author
Christopher Doris
committed
fix bug in calling eval
1 parent 682113b commit 2c90b52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jlwrap/module.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ function pyjlmodule_dir(self::Module)
1010
end
1111

1212
function pyjlmodule_seval(self::Module, expr::Py)
13-
Py(self.eval(Meta.parse(pyconvert(String, expr))))
13+
Py(Base.eval(self, Meta.parse(pyconvert(String, expr))))
1414
end
1515

1616
function init_jlwrap_module()

0 commit comments

Comments
 (0)