diff options
-rw-r--r-- | cmd2/cmd2.py | 2 | ||||
-rw-r--r-- | docs/features/settings.rst | 2 | ||||
-rw-r--r-- | tests/conftest.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py index f133381b..434ade5f 100644 --- a/cmd2/cmd2.py +++ b/cmd2/cmd2.py @@ -207,7 +207,7 @@ class Cmd(cmd.Cmd): self.settable = \ { # allow_style is a special case in which it's an application-wide setting defined in ansi.py - 'allow_style': ('Allow ANSI style sequences in output ' + 'allow_style': ('Allow ANSI text style sequences in output ' '(valid values: {}, {}, {})'.format(ansi.STYLE_TERMINAL, ansi.STYLE_ALWAYS, ansi.STYLE_NEVER)), diff --git a/docs/features/settings.rst b/docs/features/settings.rst index 7cc0d727..f305a68c 100644 --- a/docs/features/settings.rst +++ b/docs/features/settings.rst @@ -46,7 +46,7 @@ comments, is viewable from within a running application with:: (Cmd) set --long - allow_style: Terminal # Allow ANSI style sequences in output (valid values: Terminal, Always, Never) + allow_style: Terminal # Allow ANSI text style sequences in output (valid values: Terminal, Always, Never) continuation_prompt: > # On 2nd+ line of input debug: False # Show full error stack on error echo: False # Echo command issued into output diff --git a/tests/conftest.py b/tests/conftest.py index 3d4059d9..fe74ffe2 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -102,7 +102,7 @@ timing: False """ SHOW_LONG = """ -allow_style: Terminal # Allow ANSI style sequences in output (valid values: Terminal, Always, Never) +allow_style: Terminal # Allow ANSI text style sequences in output (valid values: Terminal, Always, Never) continuation_prompt: > # On 2nd+ line of input debug: False # Show full error stack on error echo: False # Echo command issued into output |