Re: call an exturnal program in python

2008-11-21 Thread Steve Holden
Adam wrote: > I am trying to run an external program in my code using > os.system('exename -exearg') but the exe has an "&" in it so windows > thinks it's two commands any way around this? > Have you tries quoting the exename: os.system('"exename" -exearg') That might help. How do you run it f

call an exturnal program in python

2008-11-21 Thread Adam
I am trying to run an external program in my code using os.system('exename -exearg') but the exe has an "&" in it so windows thinks it's two commands any way around this? Adam -- http://mail.python.org/mailman/listinfo/python-list