Migrate to new oslo_xxx namespace

This patch migrates the namespace of oslo packages from oslo.foobar to
oslo_foobar.  The oslo_incubator code need to be resynced, which will be
submitted in another patch.

Change-Id: Id77207750556b71f20797a0ee6f2cafd62ea30e1
This commit is contained in:
tengqm
2015-03-23 19:49:34 +08:00
parent d4dab8c875
commit 284c1c5b8d
11 changed files with 22 additions and 27 deletions

View File

@@ -19,14 +19,13 @@ import logging
import os
import socket
from oslo_serialization import jsonutils
from oslo_utils import encodeutils
from oslo_utils import importutils
import requests
import six
from six.moves.urllib import parse
from oslo.serialization import jsonutils
from oslo.utils import encodeutils
from oslo.utils import importutils
from heatclient import exc
from heatclient.openstack.common._i18n import _
from heatclient.openstack.common._i18n import _LE

View File

@@ -16,13 +16,13 @@
import base64
import collections
import os
from oslo_serialization import jsonutils
import six
from six.moves.urllib import error
from six.moves.urllib import parse
from six.moves.urllib import request
from oslo.serialization import jsonutils
from heatclient.common import environment_format
from heatclient.common import template_format
from heatclient import exc

View File

@@ -14,15 +14,15 @@
# under the License.
from __future__ import print_function
import prettytable
from six.moves.urllib import parse
import sys
import textwrap
import uuid
import yaml
from oslo.serialization import jsonutils
from oslo.utils import importutils
from oslo_serialization import jsonutils
from oslo_utils import importutils
import prettytable
from six.moves.urllib import parse
import yaml
from heatclient import exc
from heatclient.openstack.common._i18n import _

View File

@@ -12,7 +12,7 @@
import sys
from oslo.serialization import jsonutils
from oslo_serialization import jsonutils
from heatclient.openstack.common._i18n import _

View File

@@ -20,12 +20,11 @@ import argparse
import logging
import sys
from oslo_utils import encodeutils
from oslo_utils import importutils
import six
import six.moves.urllib.parse as urlparse
from oslo.utils import encodeutils
from oslo.utils import importutils
from keystoneclient.auth.identity import v2 as v2_auth
from keystoneclient.auth.identity import v3 as v3_auth
from keystoneclient import discover

View File

@@ -11,7 +11,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from oslo.serialization import jsonutils
from oslo_serialization import jsonutils
from heatclient.common import http
from heatclient import exc

View File

@@ -26,8 +26,8 @@ import testtools
import uuid
import yaml
from oslo.serialization import jsonutils
from oslo.utils import encodeutils
from oslo_serialization import jsonutils
from oslo_utils import encodeutils
from requests_mock.contrib import fixture as rm_fixture
from keystoneclient import fixture as keystone_fixture

View File

@@ -13,11 +13,10 @@
# License for the specific language governing permissions and limitations
# under the License.
from oslo_utils import encodeutils
import six
from six.moves.urllib import parse
from oslo.utils import encodeutils
from heatclient.openstack.common.apiclient import base
from heatclient.v1 import stacks

View File

@@ -11,10 +11,9 @@
# License for the specific language governing permissions and limitations
# under the License.
from oslo_utils import encodeutils
from six.moves.urllib import parse
from oslo.utils import encodeutils
from heatclient.openstack.common.apiclient import base

View File

@@ -13,10 +13,9 @@
# License for the specific language governing permissions and limitations
# under the License.
from oslo_utils import encodeutils
from six.moves.urllib import parse
from oslo.utils import encodeutils
from heatclient.openstack.common.apiclient import base
from heatclient.v1 import stacks

View File

@@ -14,13 +14,13 @@
# under the License.
import logging
from oslo_serialization import jsonutils
from oslo_utils import strutils
import six
from six.moves.urllib import request
import yaml
from oslo.serialization import jsonutils
from oslo.utils import strutils
from heatclient.common import deployment_utils
from heatclient.common import template_format
from heatclient.common import template_utils