We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 745a9d4 commit cbf1a7cCopy full SHA for cbf1a7c
cmd2.py
@@ -169,7 +169,7 @@ class RlType(Enum):
169
if rl_type == RlType.NONE:
170
rl_err_msg = "Tab completion has been disabled since no supported version of readline was found\n"
171
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'))
+ sys.stderr.write(rl_err_msg)
173
174
# BrokenPipeError and FileNotFoundError exist only in Python 3. Use IOError for Python 2.
175
if six.PY3:
0 commit comments