Compare commits

...

2 Commits

Author SHA1 Message Date
Gerda Shank
df57820ff1 Merge branch 'main' into db/fix-typo 2022-05-02 10:14:59 -04:00
David Berton
924ebe4967 fix a typo on 'parse' help output 2022-02-08 08:02:09 -05:00

View File

@@ -536,9 +536,9 @@ def _build_parse_subparser(subparsers, base_subparser):
sub = subparsers.add_parser(
"parse",
parents=[base_subparser],
help="""
Parsed the project and provides information on performance
""",
help='''
Parses the project and provides information on performance
'''
)
sub.set_defaults(cls=parse_task.ParseTask, which="parse", rpc_method="parse")
sub.add_argument("--write-manifest", action="store_true")