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 bethard, eric.araujo, htnieman, mZarjk, manveru, paul.j3, tshepang, vajrasky, wolma, xuanji, ysj.ray
Date 2014-10-29.05:30:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1414560638.77.0.274311763641.issue11874@psf.upfronthosting.co.za>
In-reply-to
Content
The patch with a major rewrite of '_format_actions_usage' handles this usage problem correctly:

    usage: try_para_in_meta.py [-h] input_file(s) [input_file(s) ...]

The error is the result of usage group formatter trying to remove excess `()`.  To give an idea of what is happening I replaced the missing () with {}.

    input_file(s) [input_file(s) ...]
    input_file{s) [input_file(s} ...]
History
Date User Action Args
2014-10-29 05:30:38paul.j3setrecipients: + paul.j3, bethard, eric.araujo, ysj.ray, xuanji, tshepang, htnieman, manveru, vajrasky, wolma, mZarjk
2014-10-29 05:30:38paul.j3setmessageid: <1414560638.77.0.274311763641.issue11874@psf.upfronthosting.co.za>
2014-10-29 05:30:38paul.j3linkissue11874 messages
2014-10-29 05:30:38paul.j3create