From fcba5325fca296fa5b23c33634018831675c903f Mon Sep 17 00:00:00 2001 From: Christophe Bedard Date: Thu, 20 Feb 2025 12:44:26 -0800 Subject: [PATCH] Fix typo in verbs help output Signed-off-by: Christophe Bedard --- osrf_pycommon/cli_utils/verb_pattern.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osrf_pycommon/cli_utils/verb_pattern.py b/osrf_pycommon/cli_utils/verb_pattern.py index d6b546f..549364c 100644 --- a/osrf_pycommon/cli_utils/verb_pattern.py +++ b/osrf_pycommon/cli_utils/verb_pattern.py @@ -109,7 +109,7 @@ def create_subparsers(parser, cmd_name, verbs, group, sysargs, title=None): subparser = parser.add_subparsers( title=title or '{0} command'.format(cmd_name), metavar=metavar, - description='Call `{0} {1} -h` for help on a each verb.'.format( + description='Call `{0} {1} -h` for help on each verb.'.format( cmd_name, metavar), dest='verb' )