diff options
Diffstat (limited to 'parse_exps.py')
-rwxr-xr-x | parse_exps.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/parse_exps.py b/parse_exps.py index 98f95df..37667aa 100755 --- a/parse_exps.py +++ b/parse_exps.py | |||
@@ -14,7 +14,7 @@ import sys | |||
14 | import traceback | 14 | import traceback |
15 | 15 | ||
16 | from collections import namedtuple | 16 | from collections import namedtuple |
17 | from config.config import DEFAULTS,PARAMS | 17 | from config.config import FILES,DEFAULTS,PARAMS |
18 | from optparse import OptionParser | 18 | from optparse import OptionParser |
19 | from parse.point import ExpPoint | 19 | from parse.point import ExpPoint |
20 | from parse.tuple_table import TupleTable | 20 | from parse.tuple_table import TupleTable |
@@ -94,7 +94,7 @@ def parse_exp(exp_force_base): | |||
94 | 94 | ||
95 | 95 | ||
96 | def get_exp_params(data_dir, cm_builder): | 96 | def get_exp_params(data_dir, cm_builder): |
97 | param_file = "%s/%s" % (data_dir, DEFAULTS['params_file']) | 97 | param_file = "%s/%s" % (data_dir, FILES['params_file']) |
98 | if os.path.isfile(param_file): | 98 | if os.path.isfile(param_file): |
99 | params = com.load_params(param_file) | 99 | params = com.load_params(param_file) |
100 | 100 | ||