aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Herman <hermanjl@cs.unc.edu>2013-05-02 15:56:23 -0400
committerJonathan Herman <hermanjl@cs.unc.edu>2013-05-02 15:56:23 -0400
commita530b618fb32321e61b2a90001caa4d6b1b2b192 (patch)
tree6586e4be5ded8268ccea413a4309d0bc99321e01
parente01b51b677e925bc2cd8d55afa89f29674b6f356 (diff)
Removed bug where creating a base_table broke the main table.
-rwxr-xr-xparse_exps.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/parse_exps.py b/parse_exps.py
index 82febfc..9871baf 100755
--- a/parse_exps.py
+++ b/parse_exps.py
@@ -182,7 +182,8 @@ def get_bases(builder, exps, opts):
182 will be calculated.''' 182 will be calculated.'''
183 bases = [None]*len(exps) 183 bases = [None]*len(exps)
184 184
185 base_table = make_base_table(opts.scale_against, builder, exps) 185 base_table = make_base_table(opts.scale_against,
186 copy.deepcopy(builder), exps)
186 if not base_table: 187 if not base_table:
187 return bases 188 return bases
188 189