"Dick Moores" <[EMAIL PROTECTED]> wrote
In my ipy_user_conf.py I have put this line:
ipy_editors.install_editor("C:\Program Files\TextPad 5\TextPad.exe")

escape the spaces and backslashes(raw string might work as well)

ipy_editors.install_editor("C:\\Program\ Files\\TextPad 5\\TextPad.exe")

OR maybe

ipy_editors.install_editor(r"C:\Program Files\TextPad 5\TextPad.exe")

Alan G

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

Reply via email to