aboutsummaryrefslogtreecommitdiff
path: root/neb.py
diff options
context:
space:
mode:
authormryouse2022-06-30 02:36:10 +0000
committermryouse2022-06-30 02:36:10 +0000
commit35a2c0413a383a6291de71a94752cd08bdfb16f0 (patch)
treeffd71581856b1cc0fd91e6e936909b6222134ffc /neb.py
parent1dcb31e10a6793f04a1e7c094696d1153364bf29 (diff)
add REPL commands to files (this should be factored out)
Diffstat (limited to 'neb.py')
-rw-r--r--neb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/neb.py b/neb.py
index fa538ea..7e3380f 100644
--- a/neb.py
+++ b/neb.py
@@ -64,7 +64,7 @@ def repl():
def run_file(filename):
- env = build_std()
+ env = build_std(True)
with open(filename, "r") as fil:
data = fil.read()