Fix oslo package deprecation warnings

Change-Id: Idacc7991f97eecd18be00fd179061691bc67da2b
This commit is contained in:
Adam Harwell 2015-02-16 11:38:13 -06:00
parent 0460fbf34f
commit 2271737fd0
4 changed files with 9 additions and 9 deletions

View File

@ -13,8 +13,8 @@
# License for the specific language governing permissions and limitations
# under the License.
from oslo.utils import importutils
from oslo_config import cfg
from oslo_utils import importutils
keymgr_opts = [
cfg.StrOpt('api_class',

View File

@ -10,21 +10,21 @@
# License for the specific language governing permissions and limitations
# under the License.
"""oslo.i18n integration module.
"""oslo_i18n integration module.
See http://docs.openstack.org/developer/oslo.i18n/usage.html
"""
try:
import oslo.i18n
import oslo_i18n
# NOTE(dhellmann): This reference to o-s-l-o will be replaced by the
# application name when this module is synced into the separate
# repository. It is OK to have more than one translation function
# using the same domain, since there will still only be one message
# catalog.
_translators = oslo.i18n.TranslatorFactory(domain='castellan')
_translators = oslo_i18n.TranslatorFactory(domain='castellan')
# The primary translation function using the well-known name "_"
_ = _translators.primary

View File

@ -38,9 +38,9 @@ import socket
import sys
import traceback
from oslo.config import cfg
from oslo.utils import importutils
from oslo.serialization import jsonutils
from oslo_config import cfg
from oslo_utils import importutils
from oslo_serialization import jsonutils
import six
from six import moves

View File

@ -94,8 +94,8 @@ import copy
import os
import re
from oslo.config import cfg
from oslo.serialization import jsonutils
from oslo_config import cfg
from oslo_serialization import jsonutils
import six
import six.moves.urllib.parse as urlparse
import six.moves.urllib.request as urlrequest