diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-11-18 23:30:23 -0500 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-11-18 23:30:23 -0500 |
commit | 1a77e7ba6bc1bd84b70589f966c726f616ce6a96 (patch) | |
tree | ba7a6658f7f0520aeab180b5809a01d00bdc5429 /cmd2/cmd2.py | |
parent | 43c74f7f09ef6095d21e9b5d83308e3904f636a9 (diff) | |
download | cmd2-git-1a77e7ba6bc1bd84b70589f966c726f616ce6a96.tar.gz |
Reformatted warning message
Diffstat (limited to 'cmd2/cmd2.py')
-rw-r--r-- | cmd2/cmd2.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py index d544cb5f..29bf9529 100644 --- a/cmd2/cmd2.py +++ b/cmd2/cmd2.py @@ -56,9 +56,9 @@ from .rl_utils import rl_type, RlType, rl_get_point, rl_set_prompt, vt100_suppor # Set up readline if rl_type == RlType.NONE: # pragma: no cover - rl_warning = "Readline features including tab completion have been disabled since no \n" \ - "supported version of readline was found. To resolve this, install \n" \ - "pyreadline on Windows or gnureadline on Mac.\n\n" + rl_warning = ("Readline features including tab completion have been disabled since no\n" + "supported version of readline was found. To resolve this, install pyreadline\n" + "on Windows or gnureadline on Mac.\n\n") sys.stderr.write(ansi.style_warning(rl_warning)) else: from .rl_utils import rl_force_redisplay, readline |