Switch from oslo.config to oslo_config

oslo_config moved out of the oslo namespace.

bp drop-namespace-packages

Change-Id: Ia8b9b2a47bcfabe7a6aea67f243285028c981ba2
This commit is contained in:
Brant Knudson 2015-01-18 07:51:04 -06:00
parent 4010736efd
commit 3e1bee7100
6 changed files with 7 additions and 7 deletions

View File

@ -24,7 +24,7 @@ import logging
import os.path
import sys
from oslo.config import cfg
from oslo_config import cfg
try:
import oslo.messaging
messaging = True

View File

@ -188,7 +188,7 @@ from keystoneclient.common import cms
from keystoneclient import discover
from keystoneclient import exceptions
from keystoneclient import session
from oslo.config import cfg
from oslo_config import cfg
from oslo_serialization import jsonutils
from oslo_utils import timeutils
import six

View File

@ -20,7 +20,7 @@ Starting point for routing EC2 requests.
"""
from oslo.config import cfg
from oslo_config import cfg
from oslo_serialization import jsonutils
import requests
import webob.dec

View File

@ -29,9 +29,9 @@ auth_token_opts = [
def list_auth_token_opts():
"""Return a list of oslo.config options available in auth_token middleware.
"""Return a list of oslo_config options available in auth_token middleware.
The returned list includes all oslo.config options which may be registered
The returned list includes all oslo_config options which may be registered
at runtime by the project.
Each element of the list is a tuple. The first element is the name of the

View File

@ -15,7 +15,7 @@ import os
import tempfile
import mock
from oslo.config import cfg
from oslo_config import cfg
import testtools
from testtools import matchers
import webob

View File

@ -31,7 +31,7 @@ from keystoneclient import exceptions
from keystoneclient import fixture
from keystoneclient import session
import mock
from oslo.config import fixture as cfg_fixture
from oslo_config import fixture as cfg_fixture
from oslo_serialization import jsonutils
from oslo_utils import timeutils
from requests_mock.contrib import fixture as rm_fixture