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 /tests/test_argparse_completer.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 'tests/test_argparse_completer.py')
-rw-r--r-- | tests/test_argparse_completer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_argparse_completer.py b/tests/test_argparse_completer.py index e54e49c2..b904a6ac 100644 --- a/tests/test_argparse_completer.py +++ b/tests/test_argparse_completer.py @@ -63,7 +63,7 @@ class AutoCompleteTester(cmd2.Cmd): # Begin code related to help and command name completion ############################################################################################################ # Top level parser for music command - music_parser = Cmd2ArgumentParser(description='Manage music', prog='music') + music_parser = Cmd2ArgumentParser(description='Manage music') # Add subcommands to music music_subparsers = music_parser.add_subparsers() |