aboutsummaryrefslogtreecommitdiffstats
path: root/run_exps.py
diff options
context:
space:
mode:
authorhermanjl <thegoldenbee@gmail.com>2012-09-20 17:55:34 -0400
committerhermanjl <thegoldenbee@gmail.com>2012-09-20 17:55:34 -0400
commit5da63680873bece99b9e99c80bcbf8d9f7d792b3 (patch)
tree6a00ccf3c2e04b3b92c686273f2bc133ac4d881d /run_exps.py
parent48e1c8de6f8fca6770b669f8dae1ddc52917bead (diff)
parent5cbcbfa61aede7acbf68d9c17cd0723fba21b1c3 (diff)
Merge pull request #4 from ckenna/wip-cjk
Various fixes to color-scripts.
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: