From e6dfe02901f8a6bf5059fa25ff28601af5366fad Mon Sep 17 00:00:00 2001 From: Kevin Van Brunt Date: Wed, 30 Oct 2019 19:00:33 -0400 Subject: Removed all instances where a parser's prog attribute was being set since this is no longer needed --- examples/tab_autocompletion.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/tab_autocompletion.py') 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') -- cgit v1.2.1