diff options
| author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-04-15 11:55:55 -0700 |
|---|---|---|
| committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-04-15 11:55:55 -0700 |
| commit | 339d2ef4d3b43fcc151328eb9b1368d0900d8e81 (patch) | |
| tree | 6ccdbef8234eea551544836450ccc6673557611c /examples | |
| parent | c1d3d467247fc06efebfd5eab7da78215660003a (diff) | |
| parent | d4c6cd476d9cbdf306dec9ccde1efa822d2c61d8 (diff) | |
| download | cmd2-git-339d2ef4d3b43fcc151328eb9b1368d0900d8e81.tar.gz | |
Merged master into delete_optparse branch
Also:
- Bumped version to 0.9.0
Diffstat (limited to 'examples')
| -rwxr-xr-x | examples/tab_completion.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/tab_completion.py b/examples/tab_completion.py index 93d6c0ef..1419b294 100755 --- a/examples/tab_completion.py +++ b/examples/tab_completion.py @@ -8,8 +8,8 @@ import cmd2 from cmd2 import with_argparser, with_argument_list # List of strings used with flag and index based completion functions -food_item_strs = ['Pizza', 'Hamburger', 'Ham', 'Potato'] -sport_item_strs = ['Bat', 'Basket', 'Basketball', 'Football'] +food_item_strs = ['Pizza', 'Ham', 'Ham Sandwich', 'Potato'] +sport_item_strs = ['Bat', 'Basket', 'Basketball', 'Football', 'Space Ball'] class TabCompleteExample(cmd2.Cmd): |
