diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-09-27 16:30:39 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-09-27 16:30:39 -0400 |
commit | 8043b56ecbffa30139b4c540c9bea77b642bafea (patch) | |
tree | 016f04e93e2f8c4fd7f7370f68404f3db8e1e76e /cmd2/cmd2.py | |
parent | 29b52522300cea16dd9961667a5c7c055d4e3056 (diff) | |
download | cmd2-git-8043b56ecbffa30139b4c540c9bea77b642bafea.tar.gz |
AutoCompleter now handles mutually exclusive groups
Diffstat (limited to 'cmd2/cmd2.py')
-rw-r--r--[-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 50d562b4..5e1f9a72 100755..100644 --- a/cmd2/cmd2.py +++ b/cmd2/cmd2.py @@ -1848,7 +1848,7 @@ class Cmd(cmd.Cmd): """Keep accepting lines of input until the command is complete. There is some pretty hacky code here to handle some quirks of - self.pseudo_raw_input(). It returns a literal 'eof' if the input + self._pseudo_raw_input(). It returns a literal 'eof' if the input pipe runs out. We can't refactor it because we need to retain backwards compatibility with the standard library version of cmd. |