From 872898984a90d408bfbf1c14f93d0682ba6e034e Mon Sep 17 00:00:00 2001 From: cooldharma06 Date: Mon, 27 Nov 2017 15:58:39 +0530 Subject: [PATCH] Updated add-security-group help text Change-Id: I1ac2747913a33f268ee430e42606bc568c72cdd6 Related-bug: #1734605 --- zunclient/osc/v1/containers.py | 2 +- zunclient/v1/containers_shell.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/zunclient/osc/v1/containers.py b/zunclient/osc/v1/containers.py index b99e78b9..be8baafe 100644 --- a/zunclient/osc/v1/containers.py +++ b/zunclient/osc/v1/containers.py @@ -999,7 +999,7 @@ class AddSecurityGroup(command.Command): parser.add_argument( 'security_group', metavar='', - help='The security group for specified container. ') + help='Security group ID or name for specified container. ') return parser def take_action(self, parsed_args): diff --git a/zunclient/v1/containers_shell.py b/zunclient/v1/containers_shell.py index 2a4f51c6..2441654d 100644 --- a/zunclient/v1/containers_shell.py +++ b/zunclient/v1/containers_shell.py @@ -713,7 +713,7 @@ def do_commit(cs, args): help='ID or name of the container to add security group.') @utils.arg('security_group', metavar='', - help='The security group for specified container.') + help='Security group ID or name for specified container.') def do_add_security_group(cs, args): """Add security group for specified container.""" opts = {}