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/console.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'openstackclient/compute/v2/console.py') diff --git a/openstackclient/compute/v2/console.py b/openstackclient/compute/v2/console.py index 8ed0d7f2..a67b004c 100644 --- a/openstackclient/compute/v2/console.py +++ b/openstackclient/compute/v2/console.py @@ -27,7 +27,6 @@ from openstackclient.common import utils class ShowConsoleLog(command.Command): """Show console-log command""" - api = 'compute' log = logging.getLogger(__name__ + '.ShowConsoleLog') def get_parser(self, prog_name): @@ -65,7 +64,6 @@ class ShowConsoleLog(command.Command): class ShowConsoleURL(show.ShowOne): """Show console-url command""" - api = 'compute' log = logging.getLogger(__name__ + '.ShowConsoleURL') def get_parser(self, prog_name): -- cgit v1.2.1