Same fix for -P option as Steve's previous fix.

--HG--
extra : convert_revision : aaefeafa04df1074711f90b9e1f5c488d4c678d3
This commit is contained in:
Kevin Lim 2006-06-05 14:49:14 -04:00
parent cfe22d61d9
commit 295c7a908c

View file

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