diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-10-30 19:00:33 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-10-30 19:00:33 -0400 |
commit | e6dfe02901f8a6bf5059fa25ff28601af5366fad (patch) | |
tree | c7de2a9acfb913425c5da7e0d935271ff96ce164 /examples/tab_autocompletion.py | |
parent | a6f131b65e9a7e227eade57ffcf833b1f06ec3ea (diff) | |
download | cmd2-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-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 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') |