Skip to content
Snippets Groups Projects
Commit 36c70d4d authored by Iustin Pop's avatar Iustin Pop
Browse files

Fix gnt-group --help display


Copy-paste mismatch :)

Signed-off-by: default avatarIustin Pop <iustin@google.com>
Reviewed-by: default avatarBernardo Dal Seno <bdalseno@google.com>
parent f0753837
No related branches found
No related tags found
No related merge requests found
...@@ -311,15 +311,15 @@ commands = { ...@@ -311,15 +311,15 @@ commands = {
"Evacuate all instances within a group"), "Evacuate all instances within a group"),
"list-tags": ( "list-tags": (
ListTags, ARGS_ONE_GROUP, [PRIORITY_OPT], ListTags, ARGS_ONE_GROUP, [PRIORITY_OPT],
"<instance_name>", "List the tags of the given instance"), "<group_name>", "List the tags of the given group"),
"add-tags": ( "add-tags": (
AddTags, [ArgGroup(min=1, max=1), ArgUnknown()], AddTags, [ArgGroup(min=1, max=1), ArgUnknown()],
[TAG_SRC_OPT, PRIORITY_OPT], [TAG_SRC_OPT, PRIORITY_OPT],
"<instance_name> tag...", "Add tags to the given instance"), "<group_name> tag...", "Add tags to the given group"),
"remove-tags": ( "remove-tags": (
RemoveTags, [ArgGroup(min=1, max=1), ArgUnknown()], RemoveTags, [ArgGroup(min=1, max=1), ArgUnknown()],
[TAG_SRC_OPT, PRIORITY_OPT], [TAG_SRC_OPT, PRIORITY_OPT],
"<instance_name> tag...", "Remove tags from given instance"), "<group_name> tag...", "Remove tags from the given group"),
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment