diff options
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 |