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 DiPaolo
Recipients DiPaolo
Date 2021-01-09.14:34:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1610202899.54.0.332342565241.issue42875@roundup.psfhosted.org>
In-reply-to
Content
Steps to reproduce.

Run the attached script:
$ python3 argparse-indent-sample.py --help

The output is:
usage: argparse-indent-sample.py [-h] CMD ...

optional arguments:
  -h, --help           show this help message and exit

service:
  CMD                  command to use
    add                add something
    remove             remove something
    a-very-long-command
                       command that does something

Expected output is:
usage: argparse-indent-sample.py [-h] CMD ...

optional arguments:
  -h, --help           show this help message and exit

service:
  CMD                    command to use
    add                  add something
    remove               remove something
    a-very-long-command  command that does something
History
Date User Action Args
2021-01-09 14:34:59DiPaolosetrecipients: + DiPaolo
2021-01-09 14:34:59DiPaolosetmessageid: <1610202899.54.0.332342565241.issue42875@roundup.psfhosted.org>
2021-01-09 14:34:59DiPaololinkissue42875 messages
2021-01-09 14:34:58DiPaolocreate