From cbf1a7c0afbf6bc580436341c4f6bfcdf9b0e902 Mon Sep 17 00:00:00 2001 From: Kevin Van Brunt Date: Mon, 7 May 2018 15:16:03 -0400 Subject: Removed color --- cmd2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd2.py b/cmd2.py index 98907b67..5c5f0792 100755 --- a/cmd2.py +++ b/cmd2.py @@ -169,7 +169,7 @@ elif 'gnureadline' in sys.modules or 'readline' in sys.modules: if rl_type == RlType.NONE: rl_err_msg = "Tab completion has been disabled since no supported version of readline was found\n" rl_err_msg += "To resolve this, install pyreadline on Windows or gnureadline on Mac\n" - sys.stderr.write(self.colorize(rl_err_msg, 'yellow')) + sys.stderr.write(rl_err_msg) # BrokenPipeError and FileNotFoundError exist only in Python 3. Use IOError for Python 2. if six.PY3: -- cgit v1.2.1