diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-07-12 11:24:57 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-07-12 11:24:57 -0400 |
commit | 98dd8cf6a5e03e33a383c64bff4ff4b1bf2804cf (patch) | |
tree | 4d4d994336e4b9750bf5443ce70064d267dcc9fd /cmd2 | |
parent | 938bb97c9abc921a0cdb6c8618bf8deb03d7c78f (diff) | |
download | cmd2-git-98dd8cf6a5e03e33a383c64bff4ff4b1bf2804cf.tar.gz |
Updated docs
Diffstat (limited to 'cmd2')
-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 1e2a782a..9109f518 100644 --- a/cmd2/argparse_completer.py +++ b/cmd2/argparse_completer.py @@ -327,7 +327,7 @@ class AutoCompleter(object): self._print_arg_hint(flag_arg_state.action) return [] - # Otherwise check if we are completing a positional's argument + # Otherwise check if we have a positional to complete elif pos_arg_state is not None or next_pos_arg_index < len(self._positional_actions): # If we aren't current tracking a positional, then get the next positional arg to handle this token |