diff options
| author | Steve Martinelli <stevemar@ca.ibm.com> | 2013-07-11 22:40:24 -0500 |
|---|---|---|
| committer | Steve Martinelli <stevemar@ca.ibm.com> | 2013-07-12 11:07:33 -0500 |
| commit | 1a0d5ccc68f65394292992b48afe20241e89e7b8 (patch) | |
| tree | e28cadeb264d0b2701bc20ea5ef2d636ef991cec /openstackclient/identity/v3/group.py | |
| parent | f0d3bf85d8102b9bdfe83852588f9bdc895f32c6 (diff) | |
| download | python-openstackclient-1a0d5ccc68f65394292992b48afe20241e89e7b8.tar.gz | |
Remove api = apiName calls from each method
As discussed in https://review.openstack.org/#/c/36352/ for each
command, we were setting api = identity or volume... etc,
this was for an old way of calling commands that are is no longer
used.
Also removed openstackclient/common/command.py
Change-Id: I2705f35d343f2ae729dc22d6aed0b852b2f8ca19
Diffstat (limited to 'openstackclient/identity/v3/group.py')
| -rw-r--r-- | openstackclient/identity/v3/group.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/openstackclient/identity/v3/group.py b/openstackclient/identity/v3/group.py index 21d73966..ca0493eb 100644 --- a/openstackclient/identity/v3/group.py +++ b/openstackclient/identity/v3/group.py @@ -28,7 +28,6 @@ from openstackclient.common import utils class AddUserToGroup(command.Command): """Add user to group""" - api = 'identity' log = logging.getLogger(__name__ + '.AddUserToGroup') def get_parser(self, prog_name): @@ -67,7 +66,6 @@ class AddUserToGroup(command.Command): class CheckUserInGroup(command.Command): """Checks that user is in a specific group""" - api = 'identity' log = logging.getLogger(__name__ + '.CheckUserInGroup') def get_parser(self, prog_name): @@ -106,7 +104,6 @@ class CheckUserInGroup(command.Command): class CreateGroup(show.ShowOne): """Create group command""" - api = 'identity' log = logging.getLogger(__name__ + '.CreateGroup') def get_parser(self, prog_name): @@ -147,7 +144,6 @@ class CreateGroup(show.ShowOne): class DeleteGroup(command.Command): """Delete group command""" - api = 'identity' log = logging.getLogger(__name__ + '.DeleteGroup') def get_parser(self, prog_name): @@ -169,7 +165,6 @@ class DeleteGroup(command.Command): class ListGroup(lister.Lister): """List groups and optionally roles assigned to groups""" - api = 'identity' log = logging.getLogger(__name__ + '.ListGroup') def get_parser(self, prog_name): @@ -279,7 +274,6 @@ class ListGroup(lister.Lister): class RemoveUserFromGroup(command.Command): """Remove user to group""" - api = 'identity' log = logging.getLogger(__name__ + '.RemoveUserFromGroup') def get_parser(self, prog_name): @@ -318,7 +312,6 @@ class RemoveUserFromGroup(command.Command): class SetGroup(command.Command): """Set group command""" - api = 'identity' log = logging.getLogger(__name__ + '.SetGroup') def get_parser(self, prog_name): @@ -365,7 +358,6 @@ class SetGroup(command.Command): class ShowGroup(show.ShowOne): """Show group command""" - api = 'identity' log = logging.getLogger(__name__ + '.ShowGroup') def get_parser(self, prog_name): |
