summaryrefslogtreecommitdiff
path: root/cmd2/cmd2.py
diff options
context:
space:
mode:
Diffstat (limited to 'cmd2/cmd2.py')
-rw-r--r--cmd2/cmd2.py3
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 {}"