diff options
| author | Jenkins <jenkins@review.openstack.org> | 2016-05-26 22:10:23 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2016-05-26 22:10:23 +0000 |
| commit | 9da02d14eadc39da6f97b3df095af8b0c452a5b4 (patch) | |
| tree | 67e2b8ffdde0c5358eb49ef241c0b69f0ce46969 /openstackclient | |
| parent | 0ff7d6dc693fb4dd8660e35063cceecdbb9cdbc0 (diff) | |
| parent | 9e9e4e6f59f7d6a4e0fd8d96c4586d58a8f0059e (diff) | |
| download | python-openstackclient-9da02d14eadc39da6f97b3df095af8b0c452a5b4.tar.gz | |
Merge "fix endpoint show help"
Diffstat (limited to 'openstackclient')
| -rw-r--r-- | openstackclient/identity/v2_0/endpoint.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/openstackclient/identity/v2_0/endpoint.py b/openstackclient/identity/v2_0/endpoint.py index e515fc9b..fcb82eb7 100644 --- a/openstackclient/identity/v2_0/endpoint.py +++ b/openstackclient/identity/v2_0/endpoint.py @@ -129,8 +129,9 @@ class ShowEndpoint(command.ShowOne): parser = super(ShowEndpoint, self).get_parser(prog_name) parser.add_argument( 'endpoint_or_service', - metavar='<endpoint-id>', - help=_('Endpoint ID to display'), + metavar='<endpoint>', + help=_('Endpoint to display (endpoint ID, service ID,' + ' service name, service type)'), ) return parser |
