diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2019-05-07 21:20:11 -0400 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2019-05-07 21:20:11 -0400 |
commit | e52852be4d9270040d4fcb4eeabe2ca15521f48d (patch) | |
tree | 0c94818fca6e86de1c0d968ca1846f8d67792be5 /examples/tab_autocompletion.py | |
parent | 358ff2b017aff098a82fb1f41dc021c850779daf (diff) | |
parent | 46f0aed0b66f45d08ef7fa8b16f787dc79ea32b1 (diff) | |
download | cmd2-git-e52852be4d9270040d4fcb4eeabe2ca15521f48d.tar.gz |
Merged master and resolved conflicts in CHANGELOG
Diffstat (limited to 'examples/tab_autocompletion.py')
-rwxr-xr-x | examples/tab_autocompletion.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/tab_autocompletion.py b/examples/tab_autocompletion.py index aa28fc10..3f06a274 100755 --- a/examples/tab_autocompletion.py +++ b/examples/tab_autocompletion.py @@ -255,7 +255,7 @@ class TabCompleteExample(cmd2.Cmd): setattr(director_action, argparse_completer.ACTION_ARG_CHOICES, static_list_directors) setattr(actor_action, argparse_completer.ACTION_ARG_CHOICES, 'instance_query_actors') - # tag the file property with a custom completion function 'delimeter_complete' provided by cmd2. + # tag the file property with a custom completion function 'delimiter_complete' provided by cmd2. setattr(vid_movie_file_action, argparse_completer.ACTION_ARG_CHOICES, ('delimiter_complete', {'delimiter': '/', |