diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-01-16 13:26:49 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-16 13:26:49 -0500 |
commit | e3b68241eb532dee6430c339534e2ee890abe5a3 (patch) | |
tree | 88777e27696ec208c193c13838a6c0d3dcc95f5f /cmd2/cmd2.py | |
parent | d4556962799e68ea4d54ff86186428d17edcaef9 (diff) | |
parent | 64c05ab4fd71f2c235644af2d18672edf6757702 (diff) | |
download | cmd2-git-e3b68241eb532dee6430c339534e2ee890abe5a3.tar.gz |
Merge pull request #847 from python-cmd2/generating_output_docs
Generating output docs
Diffstat (limited to 'cmd2/cmd2.py')
-rw-r--r-- | cmd2/cmd2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py index 434ade5f..cce281b7 100644 --- a/cmd2/cmd2.py +++ b/cmd2/cmd2.py @@ -290,7 +290,7 @@ class Cmd(cmd.Cmd): # The error that prints when a non-existent command is run self.default_error = "{} is not a recognized command, alias, or macro" - # If this string is non-empty, then this warning message will print if a broken pipe error occurs while printing + # If non-empty, this string will be displayed if a broken pipe error occurs self.broken_pipe_warning = '' # Commands that will run at the beginning of the command loop |