From 25d6955bb477241af0926ca90969b9e0c1ec5647 Mon Sep 17 00:00:00 2001 From: Terry Howe Date: Wed, 18 Jun 2014 11:19:31 -0600 Subject: Change the token verb to issue/revoke Change the token verb to issue/revoke as documented in: https://wiki.openstack.org/wiki/OpenStackClient/Commands#token https://wiki.openstack.org/wiki/OpenStackClient/Commands#Actions Change-Id: I44f77f98ad3269c4f2149301c204804dcb75ac81 --- openstackclient/identity/v2_0/token.py | 4 ++-- openstackclient/identity/v3/token.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'openstackclient') diff --git a/openstackclient/identity/v2_0/token.py b/openstackclient/identity/v2_0/token.py index 793354cf..c503ac57 100644 --- a/openstackclient/identity/v2_0/token.py +++ b/openstackclient/identity/v2_0/token.py @@ -23,7 +23,7 @@ from cliff import show class CreateToken(show.ShowOne): - """Create token command""" + """Issue token command""" log = logging.getLogger(__name__ + '.CreateToken') @@ -40,7 +40,7 @@ class CreateToken(show.ShowOne): class DeleteToken(command.Command): - """Delete token command""" + """Revoke token command""" log = logging.getLogger(__name__ + '.DeleteToken') diff --git a/openstackclient/identity/v3/token.py b/openstackclient/identity/v3/token.py index 3cc78cd7..452a7ae5 100644 --- a/openstackclient/identity/v3/token.py +++ b/openstackclient/identity/v3/token.py @@ -186,7 +186,7 @@ class CreateRequestToken(show.ShowOne): class CreateToken(show.ShowOne): - """Create token command""" + """Issue token command""" log = logging.getLogger(__name__ + '.CreateToken') -- cgit v1.2.1