From 1a0d5ccc68f65394292992b48afe20241e89e7b8 Mon Sep 17 00:00:00 2001 From: Steve Martinelli Date: Thu, 11 Jul 2013 22:40:24 -0500 Subject: 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 --- openstackclient/compute/v2/fixedip.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'openstackclient/compute/v2/fixedip.py') diff --git a/openstackclient/compute/v2/fixedip.py b/openstackclient/compute/v2/fixedip.py index d0687fd7..c41fed45 100644 --- a/openstackclient/compute/v2/fixedip.py +++ b/openstackclient/compute/v2/fixedip.py @@ -25,7 +25,6 @@ from openstackclient.common import utils class AddFixedIP(command.Command): """Add fixed-ip command""" - api = "compute" log = logging.getLogger(__name__ + ".AddFixedIP") def get_parser(self, prog_name): @@ -59,7 +58,6 @@ class AddFixedIP(command.Command): class RemoveFixedIP(command.Command): """Remove fixed-ip command""" - api = "compute" log = logging.getLogger(__name__ + ".RemoveFixedIP") def get_parser(self, prog_name): -- cgit v1.2.1