Skip to content

Commit feec0c8

Browse files
authored
Merge pull request #202 from larsewi/typo
Fixed typo in `cfengine --help`
2 parents 0e2f53e + aa4268b commit feec0c8

1 file changed

Lines changed: 10 additions & 4 deletions

File tree

src/cfengine_cli/cfengine_wrapper/arg_parse.py

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,16 @@ def parse_wrapper_args(subp: argparse._SubParsersAction):
3535
default=None,
3636
)
3737

38-
subp.add_parser("build", help="Build a policy set from a CFEngine Build project\n\
39-
A wrapper arount the cfbs `build`-function.")
40-
sp = subp.add_parser("deploy", help="Deploy policy-set (masterfiles) to hub\n\
41-
A wrapper around the cf-remote `deploy`-function with some added niceties.")
38+
subp.add_parser(
39+
"build",
40+
help="""Build a policy set from a CFEngine Build project.
41+
A wrapper around the cfbs `build`-function.""",
42+
)
43+
sp = subp.add_parser(
44+
"deploy",
45+
help="""Deploy policy-set (masterfiles) to hub.
46+
A wrapper around the cf-remote `deploy`-function with some added niceties.""",
47+
)
4248
sp.add_argument("--hub", help="Hub(s) to deploy to", type=str)
4349
sp.add_argument(
4450
"masterfiles",

0 commit comments

Comments
 (0)