Make oslo package names conform to new convention

This commit is contained in:
tengqm
2015-01-15 14:51:47 +08:00
parent 3aa5921f14
commit 47566ff01f
5 changed files with 9 additions and 8 deletions

View File

@@ -31,7 +31,7 @@ possible_topdir = os.path.normpath(os.path.join(os.path.abspath(sys.argv[0]),
if os.path.exists(os.path.join(possible_topdir, 'senlin', '__init__.py')):
sys.path.insert(0, possible_topdir)
from oslo.config import cfg
from oslo_config import cfg
from oslo import i18n
from senlin.common import config

View File

@@ -10,7 +10,7 @@
# License for the specific language governing permissions and limitations
# under the License.
from oslo.middleware import request_id as oslo_request_id
from oslo_middleware import request_id as oslo_request_id
from oslo.utils import importutils
from oslo_context import context

View File

@@ -11,9 +11,10 @@
# under the License.
import eventlet
from oslo.config import cfg
import oslo.messaging
from oslo.serialization import jsonutils
from oslo_config import cfg
from oslo_serialization import jsonutils
from senlin.common import context

View File

@@ -38,8 +38,8 @@ import socket
import sys
import traceback
from oslo.config import cfg
from oslo.serialization import jsonutils
from oslo_config import cfg
from oslo_serialization import jsonutils
from oslo.utils import importutils
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