diff options
| author | sharat.sharma <sharat.sharma@nectechnologies.in> | 2016-05-04 14:50:51 +0530 |
|---|---|---|
| committer | Sharat Sharma <sharat.sharma@nectechnologies.in> | 2016-05-04 12:57:07 +0000 |
| commit | f924fa39e149e9989c201a14cc331d5842f2cd54 (patch) | |
| tree | fe27bf714f77a47290eee3892293e56eb66159d9 /openstackclient/identity/v3 | |
| parent | bf9b0e5ff4b56c73a603e9cd63565ff99a40ae83 (diff) | |
| download | python-openstackclient-f924fa39e149e9989c201a14cc331d5842f2cd54.tar.gz | |
Added "name" parameter to the help message.
In OS_IDENTITY_API_VERSION=3, the "openstack help service delete"
allows the user to remove a service based on the name of the
service. So, this patch includes name as positional argument.
Change-Id: Iae7cb0a82af3cdd4d88e0ed2eb651abf9af30fd9
Closes-Bug: #1566909
Diffstat (limited to 'openstackclient/identity/v3')
| -rw-r--r-- | openstackclient/identity/v3/service.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openstackclient/identity/v3/service.py b/openstackclient/identity/v3/service.py index 355583cc..f43ada56 100644 --- a/openstackclient/identity/v3/service.py +++ b/openstackclient/identity/v3/service.py @@ -82,7 +82,7 @@ class DeleteService(command.Command): parser.add_argument( 'service', metavar='<service>', - help='Service to delete (type or ID)', + help='Service to delete (type, name or ID)', ) return parser |
