[issue15823] argparse produces error when multiply help lines

2012-08-30 Thread Nikolay Golub
Nikolay Golub added the comment: thanks! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue15823] argparse produces error when multiply help lines

2012-08-30 Thread R. David Murray
Changes by R. David Murray : -- resolution: -> invalid stage: -> committed/rejected status: open -> closed ___ Python tracker ___ __

[issue15823] argparse produces error when multiply help lines

2012-08-30 Thread R. David Murray
R. David Murray added the comment: The problem is the timeformat. % codes are used to include data into the strings, so if you want a literal % in the help string, you need to double it. -- nosy: +r.david.murray ___ Python tracker

[issue15823] argparse produces error when multiply help lines

2012-08-30 Thread Nikolay Golub
New submission from Nikolay Golub: When i use this code: parser.add_argument('-r', '--range', action = 'store', dest = 'ranges', nargs = 2, metavar = 'RANGE', required = False