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 43c74f7 commit 1a77e7bCopy full SHA for 1a77e7b
cmd2/cmd2.py
@@ -56,9 +56,9 @@
56
57
# Set up readline
58
if rl_type == RlType.NONE: # pragma: no cover
59
- rl_warning = "Readline features including tab completion have been disabled since no \n" \
60
- "supported version of readline was found. To resolve this, install \n" \
61
- "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")
62
sys.stderr.write(ansi.style_warning(rl_warning))
63
else:
64
from .rl_utils import rl_force_redisplay, readline
0 commit comments