[EMAIL PROTECTED] wrote:
> What happens when you try it without the single quotes?
> result = os.system("pythonbugtest.exe" "test")
>
That would be equivalent to
result = os.system("pythonbugtest.exetest")
which almost certainly won't do anything useful.
regards
Steve
--
Steve Holden +44 150 684 7255 +1 800 494 3119
Holden Web LLC www.holdenweb.com
PyCon TX 2006 www.python.org/pycon/
--
http://mail.python.org/mailman/listinfo/python-list
