diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2020-01-29 19:27:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-29 19:27:43 -0500 |
commit | 052caa649be459145c5593f9515be8d3100a16c3 (patch) | |
tree | 1ea9343206b1c070460415f010c6d1086e514802 /cmd2/cmd2.py | |
parent | 26c140e891773f69850043b68c75d9467bf54e55 (diff) | |
parent | 6296d413ac1cee3577c19ba2bbf9da56202dc26d (diff) | |
download | cmd2-git-052caa649be459145c5593f9515be8d3100a16c3.tar.gz |
Merge branch 'master' into changelog_clarification
Diffstat (limited to 'cmd2/cmd2.py')
-rw-r--r-- | cmd2/cmd2.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py index f3b7c4a4..34435ed0 100644 --- a/cmd2/cmd2.py +++ b/cmd2/cmd2.py @@ -279,6 +279,9 @@ class Cmd(cmd.Cmd): # The multiline command currently being typed which is used to tab complete multiline commands. self._multiline_in_progress = '' + # Set the header used for the help function's listing of documented functions + self.doc_header = "Documented commands (use 'help -v' for verbose/'help <topic>' for details):" + # The error that prints when no help information can be found self.help_error = "No help on {}" |