diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-07-17 19:29:58 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-07-17 19:29:58 -0400 |
commit | 3a613d3e5d47d906a4d28e09e72a9a492373f61d (patch) | |
tree | 0dc08704ed3a0ca0139c4db2eec30e6e88dcfbee /cmd2/argparse_completer.py | |
parent | d745c773cbb1a135cc30875736ef21cc629f3985 (diff) | |
download | cmd2-git-3a613d3e5d47d906a4d28e09e72a9a492373f61d.tar.gz |
Reduced complexity of complete()
Diffstat (limited to 'cmd2/argparse_completer.py')
-rw-r--r-- | cmd2/argparse_completer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/argparse_completer.py b/cmd2/argparse_completer.py index c824bf97..a741882c 100644 --- a/cmd2/argparse_completer.py +++ b/cmd2/argparse_completer.py @@ -414,7 +414,7 @@ class AutoCompleter(object): """ Supports cmd2's help command in the completion of sub-command names :param tokens: command line tokens - :param text: the string prefix we are attempting to match (all returned matches must begin with it) + :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 :param begidx: the beginning index of the prefix text :param endidx: the ending index of the prefix text |