File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 5757# Set up readline
5858from .rl_utils import rl_type , RlType
5959if rl_type == RlType .NONE :
60- rl_err_msg = "Readline features including tab completion and history have been disabled since no \n " \
61- "supported version of readline was found. To resolve this, install pyreadline on \n " \
62- "Windows or gnureadline on Mac.\n \n "
63- sys .stderr .write (Fore .LIGHTYELLOW_EX + rl_err_msg + Fore .RESET )
60+ rl_warning = "Readline features including tab completion have been disabled since no \n " \
61+ "supported version of readline was found. To resolve this, install \n " \
62+ "pyreadline on Windows or gnureadline on Mac.\n \n "
63+ sys .stderr .write (Fore .LIGHTYELLOW_EX + rl_warning + Fore .RESET )
6464else :
6565 from .rl_utils import rl_force_redisplay , readline
6666
You can’t perform that action at this time.
0 commit comments