From e99e0c8690e25abf226f3a7eaf636ce967537fee Mon Sep 17 00:00:00 2001 From: Louis Taylor Date: Thu, 5 Feb 2015 22:27:16 +0000 Subject: Change oslo.utils to oslo_utils The oslo.utils libraries are moving away from namespace packages. This requires oslo.utils>=1.2.0 bp drop-namespace-packages Change-Id: I803df61e91eabb96329d859aef6bea03530fb84f --- glanceclient/common/utils.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'glanceclient/common/utils.py') diff --git a/glanceclient/common/utils.py b/glanceclient/common/utils.py index 5841ffe..a8c7faa 100644 --- a/glanceclient/common/utils.py +++ b/glanceclient/common/utils.py @@ -24,7 +24,7 @@ import sys import threading import uuid -from oslo.utils import importutils +from oslo_utils import importutils import six if os.name == 'nt': @@ -32,8 +32,8 @@ if os.name == 'nt': else: msvcrt = None -from oslo.utils import encodeutils -from oslo.utils import strutils +from oslo_utils import encodeutils +from oslo_utils import strutils import prettytable from glanceclient import exc -- cgit v1.2.1