The [Cmd2HelpFormatter](https://github.com/python-cmd2/cmd2/blob/master/cmd2/argparse_custom.py#L600-L716) class has a bug which causes a crash in the following circumstances: - `nargs` is an int and > 1 - [metavar](https://docs.python.org/3/library/argparse.html#metavar) is a tuple Tested with `cmd2` 1.2.0 but verified the bug exists in the current version as well. In my case, the crash occurs on line 780 in the current code with the [_format_args](https://github.com/python-cmd2/cmd2/blob/master/cmd2/argparse_custom.py#L763-L784) method.