summaryrefslogtreecommitdiff
path: root/openstackclient/identity/v2_0
diff options
context:
space:
mode:
authorsunyajing <yajing.sun@easystack.cn>2016-06-13 19:16:48 +0800
committersunyajing <yajing.sun@easystack.cn>2016-06-16 09:55:10 +0800
commit9eb77ae1def29294881b27b593782edad3d26c96 (patch)
treef25f0560f9f786935f242bd278cd4a153a5ec79f /openstackclient/identity/v2_0
parent0695d1495e8337149850b8f753c603e7cac1989c (diff)
downloadpython-openstackclient-9eb77ae1def29294881b27b593782edad3d26c96.tar.gz
Fix help msg of identity endpoint
<service> argument of `endpoint create` command doesn't mean `new endpoint service`, but an existent service that the new endpoint attached to. Change-Id: I846fdb501bdea14499f42288186f375a3b2b5951
Diffstat (limited to 'openstackclient/identity/v2_0')
-rw-r--r--openstackclient/identity/v2_0/endpoint.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/openstackclient/identity/v2_0/endpoint.py b/openstackclient/identity/v2_0/endpoint.py
index 09ea738f..8065e197 100644
--- a/openstackclient/identity/v2_0/endpoint.py
+++ b/openstackclient/identity/v2_0/endpoint.py
@@ -31,7 +31,7 @@ class CreateEndpoint(command.ShowOne):
parser.add_argument(
'service',
metavar='<service>',
- help=_('New endpoint service (name or ID)'),
+ help=_('Service to be associated with new endpoint (name or ID)'),
)
parser.add_argument(
'--publicurl',
@@ -81,7 +81,7 @@ class DeleteEndpoint(command.Command):
parser.add_argument(
'endpoint',
metavar='<endpoint-id>',
- help=_('Endpoint ID to delete'),
+ help=_('Endpoint to delete (ID only)'),
)
return parser