2009/4/12 Dominique <mydom...@gmail.com>: > I tried several other ways without any success: > subprocess.Popen(args = ["notepad++.exe", filename]) > subprocess.Popen(args = ["C:\Program Files\Notepad++\notepad++.exe", > filename])
Try this: subprocess.Popen(args = [r'C:\Program Files\Notepad++\notepad++.exe', filename]) Greets Sander _______________________________________________ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor