paul j3 added the comment:

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()

----------
nosy: +paul.j3

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue17890>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to