summaryrefslogtreecommitdiff
path: root/cmd2/utils.py
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2020-02-28 11:13:00 -0500
committerKevin Van Brunt <kmvanbrunt@gmail.com>2020-02-28 11:13:00 -0500
commit8befe9e38f28e05daf2814e62cd751337aad044a (patch)
treedb0c7106c7146f8fcbc1daa0b1e4a110b816710c /cmd2/utils.py
parent21dab8b1664dcd88a1872f394890460977e01632 (diff)
downloadcmd2-git-8befe9e38f28e05daf2814e62cd751337aad044a.tar.gz
Making build_settables() public again
Diffstat (limited to 'cmd2/utils.py')
-rw-r--r--cmd2/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/utils.py b/cmd2/utils.py
index f119999a..8b5e9cc8 100644
--- a/cmd2/utils.py
+++ b/cmd2/utils.py
@@ -685,7 +685,7 @@ class RedirectionSavedState:
def basic_complete(text: str, line: str, begidx: int, endidx: int, match_against: Iterable) -> List[str]:
"""
Basic tab completion function that matches against a list of strings without considering line contents
- or cursor position. The args required by this function are defined in the header of Pythons's cmd.py.
+ or cursor position. The args required by this function are defined in the header of Python's cmd.py.
:param text: the string prefix we are attempting to match (all matches must begin with it)
:param line: the current input line with leading whitespace removed