From 295c7a908cfeecc7276f559ff53282a177f4eb66 Mon Sep 17 00:00:00 2001 From: Kevin Lim Date: Mon, 5 Jun 2006 14:49:14 -0400 Subject: Same fix for -P option as Steve's previous fix. --HG-- extra : convert_revision : aaefeafa04df1074711f90b9e1f5c488d4c678d3 --- src/python/m5/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/python') diff --git a/src/python/m5/__init__.py b/src/python/m5/__init__.py index 5bd9bf22c..4f29c55e8 100644 --- a/src/python/m5/__init__.py +++ b/src/python/m5/__init__.py @@ -160,7 +160,7 @@ while args_left: elif optchar == 'I': AddToPath(args_left.pop(0)) elif optchar == 'P': - eval(args_left.pop(0)) + exec args_left.pop(0) else: showBriefHelp(sys.stderr) panic("invalid argument '%s'\n" % arg_str) -- cgit v1.2.3