summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2018-05-07 15:16:03 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2018-05-07 15:16:03 -0400
commitcbf1a7c0afbf6bc580436341c4f6bfcdf9b0e902 (patch)
tree762a9d9c199686694e50ca49d1473df891912909
parent745a9d433dda375636540f6ce0e32a644b4d1df9 (diff)
downloadcmd2-git-cbf1a7c0afbf6bc580436341c4f6bfcdf9b0e902.tar.gz
Removed color
-rwxr-xr-xcmd2.py2
1 files changed, 1 insertions, 1 deletions
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: