Gabriel Genellina wrote: > os.spawnl(os.P_NOWAIT, 'mycmd.exe', 'mycmd.exe', 'first_arg', 'second_arg') > That is, you must provide explicitely the value for argv[0] (executable) > Remember to quote appropiately any parameter with embedded spaces > (including the executable). On Python 2.5 you could use > subprocess.list2cmdline > Right, this works. Before, I didn't realize that the full path goes to the 2nd and 3rd argument of spawnl.
Thanks for the help. P -- http://mail.python.org/mailman/listinfo/python-list
