projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
af33e74
)
Fix the python panic message
author
Nathan Binkert
<binkertn@umich.edu>
Wed, 23 Feb 2005 17:26:35 +0000
(12:26 -0500)
committer
Nathan Binkert
<binkertn@umich.edu>
Wed, 23 Feb 2005 17:26:35 +0000
(12:26 -0500)
sim/pyconfig/m5config.py:
Fix panic
--HG--
extra : convert_revision :
56d93398e992ed6e95380f6dcdb61cbee54b3893
sim/pyconfig/m5config.py
patch
|
blob
|
history
diff --git
a/sim/pyconfig/m5config.py
b/sim/pyconfig/m5config.py
index 6393fb0b8f976e085f57ac5af412aa963b72a62c..50032476c982a26c1743d83cff59055f76e09c98 100644
(file)
--- a/
sim/pyconfig/m5config.py
+++ b/
sim/pyconfig/m5config.py
@@
-35,7
+35,7
@@
except:
env = {}
env.update(os.environ)
-def panic(
*args, **kwargs
):
+def panic(
string
):
print >>sys.stderr, 'panic:', string
sys.exit(1)