summaryrefslogtreecommitdiff
path: root/examples/tab_autocompletion.py
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2019-10-30 19:00:33 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2019-10-30 19:00:33 -0400
commite6dfe02901f8a6bf5059fa25ff28601af5366fad (patch)
treec7de2a9acfb913425c5da7e0d935271ff96ce164 /examples/tab_autocompletion.py
parenta6f131b65e9a7e227eade57ffcf833b1f06ec3ea (diff)
downloadcmd2-git-e6dfe02901f8a6bf5059fa25ff28601af5366fad.tar.gz
Removed all instances where a parser's prog attribute was being set since this is no longer needed
Diffstat (limited to 'examples/tab_autocompletion.py')
-rwxr-xr-xexamples/tab_autocompletion.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/tab_autocompletion.py b/examples/tab_autocompletion.py
index 2142fe2e..3561f968 100755
--- a/examples/tab_autocompletion.py
+++ b/examples/tab_autocompletion.py
@@ -204,7 +204,7 @@ class TabCompleteExample(cmd2.Cmd):
'\n '.join(ep_list)))
print()
- video_parser = Cmd2ArgumentParser(prog='media')
+ video_parser = Cmd2ArgumentParser()
video_types_subparsers = video_parser.add_subparsers(title='Media Types', dest='type')