summaryrefslogtreecommitdiff
path: root/cmd2/cmd2.py
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2019-09-27 16:30:39 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2019-09-27 16:30:39 -0400
commit8043b56ecbffa30139b4c540c9bea77b642bafea (patch)
tree016f04e93e2f8c4fd7f7370f68404f3db8e1e76e /cmd2/cmd2.py
parent29b52522300cea16dd9961667a5c7c055d4e3056 (diff)
downloadcmd2-git-8043b56ecbffa30139b4c540c9bea77b642bafea.tar.gz
AutoCompleter now handles mutually exclusive groups
Diffstat (limited to 'cmd2/cmd2.py')
-rw-r--r--[-rwxr-xr-x]cmd2/cmd2.py2
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.