Fix the python panic message

sim/pyconfig/m5config.py:
    Fix panic

--HG--
extra : convert_revision : 56d93398e992ed6e95380f6dcdb61cbee54b3893
This commit is contained in:
Nathan Binkert 2005-02-23 12:26:35 -05:00
parent af33e74638
commit b78b634107

View file

@ -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)