diff --git a/os_brick/i18n.py b/os_brick/i18n.py index 80e5df055..0ec6c2e7b 100644 --- a/os_brick/i18n.py +++ b/os_brick/i18n.py @@ -18,7 +18,7 @@ See http://docs.openstack.org/developer/oslo.i18n/usage.html . """ -from oslo import i18n +import oslo_i18n as i18n DOMAIN = 'os-brick' diff --git a/os_brick/tests/base.py b/os_brick/tests/base.py index 53a539c8c..11e706dce 100644 --- a/os_brick/tests/base.py +++ b/os_brick/tests/base.py @@ -20,8 +20,8 @@ import os import fixtures import mock -from oslo.utils import strutils from oslo_log import log as oslo_logging +from oslo_utils import strutils from oslotest import base