diff --git a/tripleo_common/actions/base.py b/tripleo_common/actions/base.py index 447dbd414..354a76931 100644 --- a/tripleo_common/actions/base.py +++ b/tripleo_common/actions/base.py @@ -12,8 +12,6 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. -import logging - from glanceclient.v2 import client as glanceclient from heatclient.v1 import client as heatclient from ironicclient.v1 import client as ironicclient @@ -24,9 +22,6 @@ from mistralclient.api import client as mistral_client from swiftclient import client as swift_client -LOG = logging.getLogger(__name__) - - class TripleOAction(base.Action): def __init__(self): diff --git a/tripleo_common/utils/glance.py b/tripleo_common/utils/glance.py index 0ca41dd77..0f98280a6 100644 --- a/tripleo_common/utils/glance.py +++ b/tripleo_common/utils/glance.py @@ -14,13 +14,10 @@ # limitations under the License. import collections -import logging from glanceclient import exc as exceptions from glanceclient.v2.client import Client as real_glance_client -LOG = logging.getLogger(__name__) - def create_or_find_kernel_and_ramdisk(glanceclient, kernel_name, ramdisk_name, kernel_path=None, ramdisk_path=None,