aboutsummaryrefslogtreecommitdiffstats
path: root/run_exps.py
diff options
context:
space:
mode:
Diffstat (limited to 'run_exps.py')
-rwxr-xr-xrun_exps.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_exps.py b/run_exps.py
index bc15b98..a2d5077 100755
--- a/run_exps.py
+++ b/run_exps.py
@@ -117,7 +117,7 @@ def load_params(fname):
117 117
118def load_schedule(fname): 118def load_schedule(fname):
119 with open(fname, 'r') as f: 119 with open(fname, 'r') as f:
120 data = f.read() 120 data = f.read().strip()
121 try: 121 try:
122 schedule = eval(data) 122 schedule = eval(data)
123 except: 123 except: