Skip to content

Commit 2289815

Browse files
committed
lispy-python.py (setup): Use tl.f_globals
1 parent 84202e1 commit 2289815

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lispy-python.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -594,7 +594,7 @@ def setup(init_file=None):
594594
tl.f_globals["pm"] = Autocall(pm)
595595
if init_file and os.path.exists(init_file):
596596
try:
597-
exec(open(init_file).read(), globals())
597+
exec(open(init_file).read(), tl.f_globals)
598598
except:
599599
pass
600600

0 commit comments

Comments
 (0)