diff options
author | Stan Czerniawski <stan.czerniawski@arm.com> | 2014-03-23 11:11:49 -0400 |
---|---|---|
committer | Stan Czerniawski <stan.czerniawski@arm.com> | 2014-03-23 11:11:49 -0400 |
commit | 4f77bc230a6ac533b6dd12e5d9c013b1bee1c14f (patch) | |
tree | 1058083e0c778bd87c3ae84eae57336e7201c29e | |
parent | 9ac4f781ec21579e26a29fd779c6dfdc956f3136 (diff) | |
download | gem5-4f77bc230a6ac533b6dd12e5d9c013b1bee1c14f.tar.xz |
misc: Fix -q (quiet) flag
Check the right flag.
-rw-r--r-- | src/python/m5/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/m5/main.py b/src/python/m5/main.py index 6a6dfa772..29459cf64 100644 --- a/src/python/m5/main.py +++ b/src/python/m5/main.py @@ -282,7 +282,7 @@ def main(*args): options.usage(2) verbose = options.verbose - options.quiet - if options.verbose >= 0: + if verbose >= 0: print "gem5 Simulator System. http://gem5.org" print brief_copyright print |