diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-02-05 17:06:15 -0500 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-02-05 17:06:15 -0500 |
commit | f3285c801791b46acb4a3ddd0ef372316f314151 (patch) | |
tree | 5b5c49be416e11d76514389c8d2ddc36b6d5a713 /cmd2/cmd2.py | |
parent | 7519f742923a31599c56dfc5db9aad6901bfce73 (diff) | |
download | cmd2-git-f3285c801791b46acb4a3ddd0ef372316f314151.tar.gz |
Updated help text
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 7373188b..5579be4b 100644 --- a/cmd2/cmd2.py +++ b/cmd2/cmd2.py @@ -408,7 +408,7 @@ class Cmd(cmd.Cmd): ansi.STYLE_NEVER), choices=[ansi.STYLE_TERMINAL, ansi.STYLE_ALWAYS, ansi.STYLE_NEVER])) - self.add_settable(Settable('debug', bool, "Show full error stack on error")) + self.add_settable(Settable('debug', bool, "Show full traceback on exception")) self.add_settable(Settable('echo', bool, "Echo command issued into output")) self.add_settable(Settable('editor', str, "Program used by 'edit'")) self.add_settable(Settable('feedback_to_output', bool, "Include nonessentials in '|', '>' results")) |