2009/4/13 Dominique <mydom...@gmail.com>:
> What surprises me is that before calling the subprocess.Popen() method, I
> normalized the path using:
> filename = os.path.normpath(filename).

It does.But do you also call os.path.normpath for the program path?
See below an example.

>>> import os
>>> path = 'C:\Program Files\Notepad++\notepad++.exe'
>>> os.path.normpath(path)
'C:\\Program Files\\Notepad++\notepad++.exe'

Greets
Sander
_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to