diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-11-16 20:23:56 -0500 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-11-16 20:23:56 -0500 |
commit | 42cc988127aace0b07baae4f2c52befb90078f93 (patch) | |
tree | 4d8801c5951c53a0d5043256892025b316178ac5 /cmd2/cmd2.py | |
parent | 835e7dc64b485b19f57ff5650eb5dfe8a8a8a0f8 (diff) | |
download | cmd2-git-42cc988127aace0b07baae4f2c52befb90078f93.tar.gz |
Updated comments and change log
Diffstat (limited to 'cmd2/cmd2.py')
-rw-r--r-- | cmd2/cmd2.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py index faa96924..ea3d32d2 100644 --- a/cmd2/cmd2.py +++ b/cmd2/cmd2.py @@ -2007,7 +2007,7 @@ class Cmd(cmd.Cmd): orig_completer = None def disable_completion(): - """Turn off completion during the select input line""" + """Turn off completion while entering input""" nonlocal orig_completer nonlocal completion_disabled @@ -2017,7 +2017,7 @@ class Cmd(cmd.Cmd): completion_disabled = True def enable_completion(): - """Restore tab completion when select is done reading input""" + """Restore tab completion when finished entering input""" nonlocal completion_disabled if self._completion_supported() and completion_disabled: |