diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-09-19 15:32:37 -0400 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-09-19 15:32:37 -0400 |
commit | ccbe1276f786e94f1996877fdec6d070705f5ab8 (patch) | |
tree | 167fe848ea36915091fbc7cbd7ad1032dd4474ec /tests/conftest.py | |
parent | f787b1fb0adc8596d338af9cebdf3866e75fdbaa (diff) | |
download | cmd2-git-ccbe1276f786e94f1996877fdec6d070705f5ab8.tar.gz |
cmd2.Cmd.__init__ now initializes colorama and tells it to never strip ANSI codes since cmd2 deals with that
Also:
- Finished editing poutput(), ppaged(), and pfeedback() methods to strip ANSI color when appropriate
- Changed attr.ib() factory usage so cmd2 is compatible with older versions of attrs
Diffstat (limited to 'tests/conftest.py')
-rw-r--r-- | tests/conftest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/conftest.py b/tests/conftest.py index c86748e8..e177496b 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -94,7 +94,7 @@ timing: False """ SHOW_LONG = """ -colors: Terminal # Allow colorized output +colors: Terminal # Allow colorized 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 |