diff options
author | hermanjl <thegoldenbee@gmail.com> | 2012-09-20 17:55:34 -0400 |
---|---|---|
committer | hermanjl <thegoldenbee@gmail.com> | 2012-09-20 17:55:34 -0400 |
commit | 5da63680873bece99b9e99c80bcbf8d9f7d792b3 (patch) | |
tree | 6a00ccf3c2e04b3b92c686273f2bc133ac4d881d /run_exps.py | |
parent | 48e1c8de6f8fca6770b669f8dae1ddc52917bead (diff) | |
parent | 5cbcbfa61aede7acbf68d9c17cd0723fba21b1c3 (diff) |
Merge pull request #4 from ckenna/wip-cjk
Various fixes to color-scripts.
Diffstat (limited to 'run_exps.py')
-rwxr-xr-x | run_exps.py | 2 |
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 | ||
118 | def load_schedule(fname): | 118 | def 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: |