diff options
| author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-05-07 15:16:03 -0400 |
|---|---|---|
| committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-05-07 15:16:03 -0400 |
| commit | cbf1a7c0afbf6bc580436341c4f6bfcdf9b0e902 (patch) | |
| tree | 762a9d9c199686694e50ca49d1473df891912909 | |
| parent | 745a9d433dda375636540f6ce0e32a644b4d1df9 (diff) | |
| download | cmd2-git-cbf1a7c0afbf6bc580436341c4f6bfcdf9b0e902.tar.gz | |
Removed color
| -rwxr-xr-x | cmd2.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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: |
