diff options
-rw-r--r-- | cmd2/cmd2.py | 2 | ||||
-rw-r--r-- | docs/features/builtin_commands.rst | 6 | ||||
-rw-r--r-- | tests/conftest.py | 2 |
3 files changed, 5 insertions, 5 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")) diff --git a/docs/features/builtin_commands.rst b/docs/features/builtin_commands.rst index 025149b3..83d3176d 100644 --- a/docs/features/builtin_commands.rst +++ b/docs/features/builtin_commands.rst @@ -93,10 +93,10 @@ within a running application: (Cmd) set --long allow_style: Terminal # Allow ANSI text style sequences in output (valid values: Terminal, Always, Never) - debug: False # Show full error stack on error + debug: False # Show full traceback on exception echo: False # Echo command issued into output - editor: vim # Program used by ``edit`` - feedback_to_output: False # include nonessentials in `|`, `>` results + editor: vim # Program used by 'edit' + feedback_to_output: False # include nonessentials in '|', '>' results max_completion_items: 50 # Maximum number of CompletionItems to display during tab completion quiet: False # Don't print nonessential feedback timing: False # Report execution times diff --git a/tests/conftest.py b/tests/conftest.py index 9e3e2798..7f77a207 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -100,7 +100,7 @@ timing: False SHOW_LONG = """ allow_style: 'Terminal' # Allow ANSI text style sequences in output (valid values: Terminal, Always, Never) -debug: False # Show full error stack on error +debug: False # Show full traceback on exception echo: False # Echo command issued into output editor: 'vim' # Program used by 'edit' feedback_to_output: False # Include nonessentials in '|', '>' results |