From 3ad5604627427d7e1088f14c879d0ab0ee22f764 Mon Sep 17 00:00:00 2001 From: Iustin Pop <iustin@google.com> Date: Fri, 16 Mar 2012 11:59:01 +0100 Subject: [PATCH] Fix gnt-group --help display Copy-paste mismatch :) Signed-off-by: Iustin Pop <iustin@google.com> Reviewed-by: Bernardo Dal Seno <bdalseno@google.com> (cherry picked from commit 36c70d4ddc508dd1ffdcc806d617d5100f4cb265) Signed-off-by: Iustin Pop <iustin@google.com> Reviewed-by: Michael Hanselmann <hansmi@google.com> --- lib/client/gnt_group.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/client/gnt_group.py b/lib/client/gnt_group.py index 096bb9934..585db0da6 100644 --- a/lib/client/gnt_group.py +++ b/lib/client/gnt_group.py @@ -244,15 +244,15 @@ commands = { "Evacuate all instances within a group"), "list-tags": ( 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": ( AddTags, [ArgGroup(min=1, max=1), ArgUnknown()], [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": ( RemoveTags, [ArgGroup(min=1, max=1), ArgUnknown()], [TAG_SRC_OPT, PRIORITY_OPT], - "<instance_name> tag...", "Remove tags from given instance"), + "<group_name> tag...", "Remove tags from the given group"), } -- GitLab