summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2018-04-15 11:55:55 -0700
committerTodd Leonhardt <todd.leonhardt@gmail.com>2018-04-15 11:55:55 -0700
commit339d2ef4d3b43fcc151328eb9b1368d0900d8e81 (patch)
tree6ccdbef8234eea551544836450ccc6673557611c /examples
parentc1d3d467247fc06efebfd5eab7da78215660003a (diff)
parentd4c6cd476d9cbdf306dec9ccde1efa822d2c61d8 (diff)
downloadcmd2-git-339d2ef4d3b43fcc151328eb9b1368d0900d8e81.tar.gz
Merged master into delete_optparse branch
Also: - Bumped version to 0.9.0
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/tab_completion.py4
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):