summaryrefslogtreecommitdiff
path: root/cmd2/argparse_completer.py
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2018-09-26 11:50:22 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2018-09-26 11:50:22 -0400
commit26a9ea4277a61031274c48216aed21aae4e53eec (patch)
tree9ea369edcec96413cf24517210a485d97c13cd40 /cmd2/argparse_completer.py
parente0b289b940cd18adab173f65f0413a9575525860 (diff)
downloadcmd2-git-26a9ea4277a61031274c48216aed21aae4e53eec.tar.gz
Updated documentation
Diffstat (limited to 'cmd2/argparse_completer.py')
-rwxr-xr-xcmd2/argparse_completer.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/cmd2/argparse_completer.py b/cmd2/argparse_completer.py
index 21e116ed..ca50bba9 100755
--- a/cmd2/argparse_completer.py
+++ b/cmd2/argparse_completer.py
@@ -891,6 +891,9 @@ class ACHelpFormatter(argparse.RawTextHelpFormatter):
result = super()._format_args(action, default_metavar)
return result
+ def format_help(self):
+ return super().format_help() + '\n'
+
# noinspection PyCompatibility
class ACArgumentParser(argparse.ArgumentParser):