diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-11-24 22:17:32 -0500 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-11-24 22:17:32 -0500 |
commit | 99f4640190baa299d3ed73b12265b356330468ac (patch) | |
tree | c372799cb833e8d3d9e85b910d5d7831c0311268 /cmd2/rl_utils.py | |
parent | efa75484c35dc765df425043fb4d2c2672c9c26e (diff) | |
download | cmd2-git-99f4640190baa299d3ed73b12265b356330468ac.tar.gz |
Updated warning text
Diffstat (limited to 'cmd2/rl_utils.py')
-rw-r--r-- | cmd2/rl_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/rl_utils.py b/cmd2/rl_utils.py index 6278e859..12f5f202 100644 --- a/cmd2/rl_utils.py +++ b/cmd2/rl_utils.py @@ -122,7 +122,7 @@ elif 'gnureadline' in sys.modules or 'readline' in sys.modules: readline_lib = ctypes.CDLL(readline.__file__) except AttributeError: _rl_warn_reason = ("this application is running in a non-standard Python environment in\n" - "which readline is not loaded dynamically from a shared library file") + "which readline is not loaded dynamically from a shared library file.") else: rl_type = RlType.GNU if sys.stdout.isatty(): |