Skip to content

Commit cbf1a7c

Browse files
committed
Removed color
1 parent 745a9d4 commit cbf1a7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ class RlType(Enum):
169169
if rl_type == RlType.NONE:
170170
rl_err_msg = "Tab completion has been disabled since no supported version of readline was found\n"
171171
rl_err_msg += "To resolve this, install pyreadline on Windows or gnureadline on Mac\n"
172-
sys.stderr.write(self.colorize(rl_err_msg, 'yellow'))
172+
sys.stderr.write(rl_err_msg)
173173

174174
# BrokenPipeError and FileNotFoundError exist only in Python 3. Use IOError for Python 2.
175175
if six.PY3:

0 commit comments

Comments
 (0)