diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-07-16 14:13:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-16 14:13:58 -0400 |
commit | 15b043c51433e8fd3c5495c3275e3156b5cbc3f6 (patch) | |
tree | b116b60d6bfd52ab37d3568028810c30c1b40257 /cmd2/argparse_custom.py | |
parent | 1707ab8d5ee53b809af0d6ebbe5c12a48850dbe5 (diff) | |
parent | ddb7b9243bcbfaf7e419e61b9cb9e0f49aa752b3 (diff) | |
download | cmd2-git-15b043c51433e8fd3c5495c3275e3156b5cbc3f6.tar.gz |
Merge pull request #721 from python-cmd2/default_sort_key
Default sort key
Diffstat (limited to 'cmd2/argparse_custom.py')
-rw-r--r-- | cmd2/argparse_custom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/argparse_custom.py b/cmd2/argparse_custom.py index 1cdb7840..5d8e76ef 100644 --- a/cmd2/argparse_custom.py +++ b/cmd2/argparse_custom.py @@ -74,7 +74,7 @@ Tab Completion: completer_method This is exactly like completer_function, but the function needs to be an instance method of a cmd2-based class. When AutoCompleter calls the method, it will pass the app instance as the self argument. cmd2 provides - a few completer methods for convenience (e.g. path_complete, delimiter_complete) + a few completer methods for convenience (e.g., path_complete, delimiter_complete) Example: This adds file-path completion to an argument |