diff options
Diffstat (limited to 'parse_exps.py')
-rwxr-xr-x | parse_exps.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/parse_exps.py b/parse_exps.py index f7e1342..f8a1b98 100755 --- a/parse_exps.py +++ b/parse_exps.py | |||
@@ -127,7 +127,8 @@ def main(): | |||
127 | result_table.write_map(opts.out) | 127 | result_table.write_map(opts.out) |
128 | else: | 128 | else: |
129 | # Write out csv directories for all variable params | 129 | # Write out csv directories for all variable params |
130 | result_table.write_csvs(opts.out) | 130 | dir_map = result_table.to_dir_map() |
131 | dir_map.write(opts.out) | ||
131 | 132 | ||
132 | if __name__ == '__main__': | 133 | if __name__ == '__main__': |
133 | main() | 134 | main() |