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 cb55f0b commit bd14937Copy full SHA for bd14937
cmd2/rl_utils.py
@@ -133,8 +133,8 @@ def pyreadline_remove_history_item(pos: int) -> None:
133
if not _rl_warn_reason:
134
_rl_warn_reason = ("no supported version of readline was found. To resolve this, install\n"
135
"pyreadline on Windows or gnureadline on Mac.")
136
- rl_warning = ("Readline features including tab completion have been disabled because\n" +
137
- _rl_warn_reason + '\n\n')
+ rl_warning = ("Readline features including tab completion have been disabled because\n"
+ + _rl_warn_reason + '\n\n')
138
else:
139
rl_warning = ''
140
0 commit comments