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/v2_0/endpoint.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/v2_0/endpoint.py')
| -rw-r--r-- | openstackclient/identity/v2_0/endpoint.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/openstackclient/identity/v2_0/endpoint.py b/openstackclient/identity/v2_0/endpoint.py index 4ce4fcb2..680465ae 100644 --- a/openstackclient/identity/v2_0/endpoint.py +++ b/openstackclient/identity/v2_0/endpoint.py @@ -29,7 +29,6 @@ from openstackclient.common import utils class CreateEndpoint(show.ShowOne): """Create endpoint command""" - api = 'identity' log = logging.getLogger(__name__ + '.CreateEndpoint') def get_parser(self, prog_name): @@ -78,7 +77,6 @@ class CreateEndpoint(show.ShowOne): class DeleteEndpoint(command.Command): """Delete endpoint command""" - api = 'identity' log = logging.getLogger(__name__ + '.DeleteEndpoint') def get_parser(self, prog_name): @@ -99,7 +97,6 @@ class DeleteEndpoint(command.Command): class ListEndpoint(lister.Lister): """List endpoint command""" - api = 'identity' log = logging.getLogger(__name__ + '.ListEndpoint') def get_parser(self, prog_name): @@ -136,7 +133,6 @@ class ListEndpoint(lister.Lister): class ShowEndpoint(show.ShowOne): """Show endpoint command""" - api = 'identity' log = logging.getLogger(__name__ + '.ShowEndpoint') def get_parser(self, prog_name): |
