summaryrefslogtreecommitdiffstats
path: root/src/debputy/commands/debputy_cmd/plugin_cmds.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/debputy/commands/debputy_cmd/plugin_cmds.py')
-rw-r--r--src/debputy/commands/debputy_cmd/plugin_cmds.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/debputy/commands/debputy_cmd/plugin_cmds.py b/src/debputy/commands/debputy_cmd/plugin_cmds.py
index 3d8bdcb..54acdc5 100644
--- a/src/debputy/commands/debputy_cmd/plugin_cmds.py
+++ b/src/debputy/commands/debputy_cmd/plugin_cmds.py
@@ -437,8 +437,8 @@ def _parser_type_name(v: Union[str, Type[Any]]) -> str:
@plugin_list_cmds.register_subcommand(
- ["plugable-manifest-rules", "p-m-r", "pmr"],
- help_description="Plugable manifest rules (such as install rules)",
+ ["pluggable-manifest-rules", "p-m-r", "pmr"],
+ help_description="Pluggable manifest rules (such as install rules)",
argparser=TEXT_CSV_FORMAT_NO_STABILITY_PROMISE,
)
def _plugin_cmd_list_manifest_rules(context: CommandContext) -> None:
@@ -953,8 +953,8 @@ def _plugin_cmd_show_ppf(context: CommandContext) -> None:
@plugin_show_cmds.register_subcommand(
- ["plugable-manifest-rules", "p-m-r", "pmr"],
- help_description="Plugable manifest rules (such as install rules)",
+ ["pluggable-manifest-rules", "p-m-r", "pmr"],
+ help_description="Pluggable manifest rules (such as install rules)",
argparser=add_arg(
"pmr_rule_name",
metavar="rule-name",
@@ -991,8 +991,8 @@ def _plugin_cmd_show_manifest_rule(context: CommandContext) -> None:
if len(matched) != 1 and (matched or rule_name != "::"):
if not matched:
_error(
- f"Could not find any plugable manifest rule related to {parsed_args.pmr_rule_name}."
- f" Please use `debputy plugin list plugable-manifest-rules` to see the list of rules."
+ f"Could not find any pluggable manifest rule related to {parsed_args.pmr_rule_name}."
+ f" Please use `debputy plugin list pluggable-manifest-rules` to see the list of rules."
)
match_a = matched[0][0]
match_b = matched[1][0]
@@ -1000,7 +1000,7 @@ def _plugin_cmd_show_manifest_rule(context: CommandContext) -> None:
f"The name {rule_name} was ambiguous and matched multiple rule types. Please use"
f" <rule-type>::{rule_name} to clarify which rule to use"
f" (such as {_parser_type_name(match_a)}::{rule_name} or {_parser_type_name(match_b)}::{rule_name})."
- f" Please use `debputy plugin list plugable-manifest-rules` to see the list of rules."
+ f" Please use `debputy plugin list pluggable-manifest-rules` to see the list of rules."
)
if matched:
@@ -1154,7 +1154,7 @@ def _render_discard_rule(
@plugin_show_cmds.register_subcommand(
["automatic-discard-rules", "a-d-r"],
- help_description="Plugable manifest rules (such as install rules)",
+ help_description="Pluggable manifest rules (such as install rules)",
argparser=add_arg(
"discard_rule",
metavar="automatic-discard-rule",