Senthil <[EMAIL PROTECTED]> added the comment:

This issue is valid in Python2.5. I verified it on a Windows. The fix
suggested 

Changing:
     os.system(cmd + ' ' + filename)
to
     os.system('%s "%s"' % (cmd,filename))

in pydoc.tempfilepager also makes sense for fixing this issue.

----------
nosy: +orsenthil

_______________________________________
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue3045>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to