diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-05-07 14:17:37 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-05-07 14:17:37 -0400 |
commit | 176c06d9e7521e86228eac4d46953ce15320b8f6 (patch) | |
tree | 99d6259f175a7de821b8da5858bf576dc0818257 /cmd2 | |
parent | 64f25c5ffcea9e57188e5b38fa52301fa7c21139 (diff) | |
download | cmd2-git-176c06d9e7521e86228eac4d46953ce15320b8f6.tar.gz |
Added newline to warning
Diffstat (limited to 'cmd2')
-rwxr-xr-x | cmd2/cmd2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py index 64ad0339..5c58977b 100755 --- a/cmd2/cmd2.py +++ b/cmd2/cmd2.py @@ -56,7 +56,7 @@ from . import utils from .rl_utils import rl_type, RlType if rl_type == RlType.NONE: rl_err_msg = "Tab completion has been disabled since no supported version of readline was found\n" - rl_err_msg += "To resolve this, install pyreadline on Windows or gnureadline on Mac" + rl_err_msg += "To resolve this, install pyreadline on Windows or gnureadline on Mac\n" sys.stderr.write(Fore.LIGHTYELLOW_EX + rl_err_msg + Fore.RESET) else: from .rl_utils import rl_force_redisplay, readline |