(self,
indent_increment=2,
max_help_position=24,
width=None,
short_first=1)
| 358 | """ |
| 359 | |
| 360 | def __init__(self, |
| 361 | indent_increment=2, |
| 362 | max_help_position=24, |
| 363 | width=None, |
| 364 | short_first=1): |
| 365 | HelpFormatter.__init__( |
| 366 | self, indent_increment, max_help_position, width, short_first) |
| 367 | |
| 368 | def format_usage(self, usage): |
| 369 | return _("Usage: %s\n") % usage |