diff options
| author | Ramaraja <ramaraja.r@hcl.com> | 2015-03-04 00:55:41 +0530 |
|---|---|---|
| committer | Ramaraja <ramaraja.r@hcl.com> | 2015-03-04 09:48:40 +0530 |
| commit | 8e512017c4fb5f032b7dd17335c586a20171d52c (patch) | |
| tree | b488cd8d7425ee6e76a2279b0e704d7e57ed3228 /openstackclient/compute | |
| parent | 9ce112f1a1e05d18e590da20c268de967a7b4795 (diff) | |
| download | python-openstackclient-8e512017c4fb5f032b7dd17335c586a20171d52c.tar.gz | |
Fix help messages
Update help message for openstack security group rule delete
Update help message for openstack security group rule list
Change-Id: I017ffd424ca25b6c62193b91068eb1ba7de6c919
Closes-Bug: #1417854
Diffstat (limited to 'openstackclient/compute')
| -rw-r--r-- | openstackclient/compute/v2/security_group.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openstackclient/compute/v2/security_group.py b/openstackclient/compute/v2/security_group.py index f7ffb1d1..2f19ba68 100644 --- a/openstackclient/compute/v2/security_group.py +++ b/openstackclient/compute/v2/security_group.py @@ -322,7 +322,7 @@ class DeleteSecurityGroupRule(command.Command): parser.add_argument( 'group', metavar='<group>', - help='Create rule in this security group', + help='Security group rule to delete (name or ID)', ) parser.add_argument( "--proto", @@ -375,7 +375,7 @@ class ListSecurityGroupRule(lister.Lister): parser.add_argument( 'group', metavar='<group>', - help='Create rule in this security group', + help='List all rules in this security group', ) return parser |
