This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author orsenthil
Recipients orsenthil, peta
Date 2008-06-23.09:56:50
SpamBayes Score 0.0046626437
Marked as misclassified No
Message-id <1214215016.47.0.319269443175.issue3045@psf.upfronthosting.co.za>
In-reply-to
Content
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.
History
Date User Action Args
2008-06-23 09:56:57orsenthilsetspambayes_score: 0.00466264 -> 0.0046626437
recipients: + orsenthil, peta
2008-06-23 09:56:56orsenthilsetspambayes_score: 0.00466264 -> 0.00466264
messageid: <1214215016.47.0.319269443175.issue3045@psf.upfronthosting.co.za>
2008-06-23 09:56:55orsenthillinkissue3045 messages
2008-06-23 09:56:54orsenthilcreate