Switch from oslo.utils to oslo_utils

oslo_utils moved out of the oslo namespace.

Partially Implements: blueprint drop-namespace-packages

Change-Id: I3c38426142de535b5474676b1214ea72b231ce76
This commit is contained in:
lin-hua-cheng 2015-01-18 14:23:32 -08:00
parent 27ccf91997
commit 0e95eb0441
5 changed files with 5 additions and 5 deletions

View File

@ -18,7 +18,7 @@
import logging
from oslo.utils import timeutils
from oslo_utils import timeutils
import six.moves.urllib.parse as urlparse
import swiftclient

View File

@ -16,7 +16,7 @@ import logging
from django.utils.translation import ugettext_lazy as _
from django.views.decorators.debug import sensitive_variables # noqa
from oslo.utils import strutils
from oslo_utils import strutils
import six
from horizon import exceptions

View File

@ -18,7 +18,7 @@ import errno
import os
import tempfile
from oslo.utils import excutils
from oslo_utils import excutils
from openstack_dashboard.openstack.common import log as logging

View File

@ -39,7 +39,7 @@ import traceback
from oslo.config import cfg
from oslo.serialization import jsonutils
from oslo.utils import importutils
from oslo_utils import importutils
import six
from six import moves

View File

@ -11,7 +11,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from oslo.utils import timeutils
from oslo_utils import timeutils
from django.utils import http as utils_http