Change leftover oslo.* to oslo_*

Use oslo_i18n instead of "from oslo import i18n"
Use oslo_messaging instead of "from oslo import messaging"

Partial-Bug: 1409733

Change-Id: If119603e4f89965d0c9e5917b2772ae0e7ddf3d2
This commit is contained in:
Anish Bhatt 2015-03-19 01:08:06 -07:00 committed by Walter A. Boring IV (hemna)
parent 86c1e4986f
commit d248cca5e5
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ See http://docs.openstack.org/developer/oslo.i18n/usage.html .
""" """
from oslo import i18n import oslo_i18n as i18n
from cinder.openstack.common import gettextutils from cinder.openstack.common import gettextutils

View File

@ -22,8 +22,8 @@ import functools
import traceback import traceback
import netaddr import netaddr
from oslo import messaging
from oslo_log import log as logging from oslo_log import log as logging
import oslo_messaging as messaging
from oslo_utils import timeutils from oslo_utils import timeutils
import six import six