From 734796b895bb85d67c651d9e8e8bf71e7d60b7e3 Mon Sep 17 00:00:00 2001 From: Kevin Van Brunt Date: Fri, 5 Oct 2018 13:32:04 -0400 Subject: Using sub-command instead of subcommand where possible to be consistent with argparse --- tests/test_pyscript.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/test_pyscript.py') diff --git a/tests/test_pyscript.py b/tests/test_pyscript.py index 36e48598..6b72e940 100644 --- a/tests/test_pyscript.py +++ b/tests/test_pyscript.py @@ -65,7 +65,7 @@ class PyscriptExample(Cmd): @with_argparser(media_parser) def do_media(self, args): - """Media management command demonstrates multiple layers of subcommands being handled by AutoCompleter""" + """Media management command demonstrates multiple layers of sub-commands being handled by AutoCompleter""" func = getattr(args, 'func', None) if func is not None: # Call whatever subcommand function was selected -- cgit v1.2.1