diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2019-06-29 14:13:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-29 14:13:55 -0400 |
commit | d9ec6f775335133f7b9dc5c33c76eac942243397 (patch) | |
tree | 20a2ef40c3e1868accb97201fc0b5ea913cb0878 /tests/conftest.py | |
parent | bef07746e33da9def33d814913891384a545a95c (diff) | |
parent | 83e418844cbf72250d180d9c529b5ec44c4e7d3d (diff) | |
download | cmd2-git-d9ec6f775335133f7b9dc5c33c76eac942243397.tar.gz |
Merge pull request #704 from python-cmd2/feature/revisit-color-support
#698 - Revisiting Color Support
Diffstat (limited to 'tests/conftest.py')
-rw-r--r-- | tests/conftest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/conftest.py b/tests/conftest.py index b049dfff..8040c21d 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -88,7 +88,7 @@ SHORTCUTS_TXT = """Shortcuts for other commands: """ # Output from the show command with default settings -SHOW_TXT = """colors: Terminal +SHOW_TXT = """allow_ansi: Terminal continuation_prompt: > debug: False echo: False @@ -101,7 +101,7 @@ timing: False """ SHOW_LONG = """ -colors: Terminal # Allow colorized output (valid values: Terminal, Always, Never) +allow_ansi: Terminal # Allow ANSI escape 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 |