diff options
author | Nathan Binkert <nate@binkert.org> | 2011-04-20 19:07:44 -0700 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2011-04-20 19:07:44 -0700 |
commit | 09064ea5526a744f68042da55ec1351b6f45444b (patch) | |
tree | 7c93811bb21efefb9872bab238ba0fef461cae20 /configs | |
parent | 99fbd18ea53417eff0c2b5afd088022b3561c89e (diff) | |
download | gem5-09064ea5526a744f68042da55ec1351b6f45444b.tar.xz |
python: fix another bug from changes to main.py
Diffstat (limited to 'configs')
-rw-r--r-- | configs/common/cpu2000.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/common/cpu2000.py b/configs/common/cpu2000.py index 7fcd4bcc3..a8cc0ce5f 100644 --- a/configs/common/cpu2000.py +++ b/configs/common/cpu2000.py @@ -155,7 +155,7 @@ class Benchmark(object): cwd = process_args.get('cwd') if not cwd: - from m5.main import options + from m5 import options cwd = options.outdir process_args['cwd'] = cwd if not isdir(cwd): |