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 paul.j3
Recipients gholms, paul.j3
Date 2013-05-02.07:04:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1367478260.41.0.88231829418.issue17890@psf.upfronthosting.co.za>
In-reply-to
Content
Looks like the 

text = text.strip()

at the end of the set of regex (in _format_actions_usage) needs to be replaced with something that removes all excess spaces, e.g.

text = _re.sub( '\s+', ' ', text ).strip()
History
Date User Action Args
2013-05-02 07:04:20paul.j3setrecipients: + paul.j3, gholms
2013-05-02 07:04:20paul.j3setmessageid: <1367478260.41.0.88231829418.issue17890@psf.upfronthosting.co.za>
2013-05-02 07:04:20paul.j3linkissue17890 messages
2013-05-02 07:04:20paul.j3create