argparse HelpFormatter-derived class that helps with text alignment when the -h argparse switch is invoked. It left aligns the second set of actions for each switch based on a code-supplied constant
Based on the code here: argparseThis project uses the following projects:
- argparse
see the file prettyHelpFrmt/cmdPretty.py to see the formatter code used
the file prettyHelpFrmt/cmdOriginal.py the originally-supplied help formatter
Both run the same command switches, see the example output below. Note that if using sub_parsers, you need to specifiy the formatter_class when creating the sub_parser, otherwise the help for the sub_parser will revert back to the default HelpFormatter
