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:
@@ -19,14 +19,13 @@ import logging
|
|||||||
import os
|
import os
|
||||||
import socket
|
import socket
|
||||||
|
|
||||||
|
from oslo_serialization import jsonutils
|
||||||
|
from oslo_utils import encodeutils
|
||||||
|
from oslo_utils import importutils
|
||||||
import requests
|
import requests
|
||||||
import six
|
import six
|
||||||
from six.moves.urllib import parse
|
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 import exc
|
||||||
from heatclient.openstack.common._i18n import _
|
from heatclient.openstack.common._i18n import _
|
||||||
from heatclient.openstack.common._i18n import _LE
|
from heatclient.openstack.common._i18n import _LE
|
||||||
|
@@ -16,13 +16,13 @@
|
|||||||
import base64
|
import base64
|
||||||
import collections
|
import collections
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
from oslo_serialization import jsonutils
|
||||||
import six
|
import six
|
||||||
from six.moves.urllib import error
|
from six.moves.urllib import error
|
||||||
from six.moves.urllib import parse
|
from six.moves.urllib import parse
|
||||||
from six.moves.urllib import request
|
from six.moves.urllib import request
|
||||||
|
|
||||||
from oslo.serialization import jsonutils
|
|
||||||
|
|
||||||
from heatclient.common import environment_format
|
from heatclient.common import environment_format
|
||||||
from heatclient.common import template_format
|
from heatclient.common import template_format
|
||||||
from heatclient import exc
|
from heatclient import exc
|
||||||
|
@@ -14,15 +14,15 @@
|
|||||||
# under the License.
|
# under the License.
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
|
|
||||||
import prettytable
|
|
||||||
from six.moves.urllib import parse
|
|
||||||
import sys
|
import sys
|
||||||
import textwrap
|
import textwrap
|
||||||
import uuid
|
import uuid
|
||||||
import yaml
|
|
||||||
|
|
||||||
from oslo.serialization import jsonutils
|
from oslo_serialization import jsonutils
|
||||||
from oslo.utils import importutils
|
from oslo_utils import importutils
|
||||||
|
import prettytable
|
||||||
|
from six.moves.urllib import parse
|
||||||
|
import yaml
|
||||||
|
|
||||||
from heatclient import exc
|
from heatclient import exc
|
||||||
from heatclient.openstack.common._i18n import _
|
from heatclient.openstack.common._i18n import _
|
||||||
|
@@ -12,7 +12,7 @@
|
|||||||
|
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
from oslo.serialization import jsonutils
|
from oslo_serialization import jsonutils
|
||||||
|
|
||||||
from heatclient.openstack.common._i18n import _
|
from heatclient.openstack.common._i18n import _
|
||||||
|
|
||||||
|
@@ -20,12 +20,11 @@ import argparse
|
|||||||
import logging
|
import logging
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
from oslo_utils import encodeutils
|
||||||
|
from oslo_utils import importutils
|
||||||
import six
|
import six
|
||||||
import six.moves.urllib.parse as urlparse
|
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 v2 as v2_auth
|
||||||
from keystoneclient.auth.identity import v3 as v3_auth
|
from keystoneclient.auth.identity import v3 as v3_auth
|
||||||
from keystoneclient import discover
|
from keystoneclient import discover
|
||||||
|
@@ -11,7 +11,7 @@
|
|||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
from oslo.serialization import jsonutils
|
from oslo_serialization import jsonutils
|
||||||
|
|
||||||
from heatclient.common import http
|
from heatclient.common import http
|
||||||
from heatclient import exc
|
from heatclient import exc
|
||||||
|
@@ -26,8 +26,8 @@ import testtools
|
|||||||
import uuid
|
import uuid
|
||||||
import yaml
|
import yaml
|
||||||
|
|
||||||
from oslo.serialization import jsonutils
|
from oslo_serialization import jsonutils
|
||||||
from oslo.utils import encodeutils
|
from oslo_utils import encodeutils
|
||||||
from requests_mock.contrib import fixture as rm_fixture
|
from requests_mock.contrib import fixture as rm_fixture
|
||||||
|
|
||||||
from keystoneclient import fixture as keystone_fixture
|
from keystoneclient import fixture as keystone_fixture
|
||||||
|
@@ -13,11 +13,10 @@
|
|||||||
# License for the specific language governing permissions and limitations
|
# License for the specific language governing permissions and limitations
|
||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
|
from oslo_utils import encodeutils
|
||||||
import six
|
import six
|
||||||
from six.moves.urllib import parse
|
from six.moves.urllib import parse
|
||||||
|
|
||||||
from oslo.utils import encodeutils
|
|
||||||
|
|
||||||
from heatclient.openstack.common.apiclient import base
|
from heatclient.openstack.common.apiclient import base
|
||||||
from heatclient.v1 import stacks
|
from heatclient.v1 import stacks
|
||||||
|
|
||||||
|
@@ -11,10 +11,9 @@
|
|||||||
# License for the specific language governing permissions and limitations
|
# License for the specific language governing permissions and limitations
|
||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
|
from oslo_utils import encodeutils
|
||||||
from six.moves.urllib import parse
|
from six.moves.urllib import parse
|
||||||
|
|
||||||
from oslo.utils import encodeutils
|
|
||||||
|
|
||||||
from heatclient.openstack.common.apiclient import base
|
from heatclient.openstack.common.apiclient import base
|
||||||
|
|
||||||
|
|
||||||
|
@@ -13,10 +13,9 @@
|
|||||||
# License for the specific language governing permissions and limitations
|
# License for the specific language governing permissions and limitations
|
||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
|
from oslo_utils import encodeutils
|
||||||
from six.moves.urllib import parse
|
from six.moves.urllib import parse
|
||||||
|
|
||||||
from oslo.utils import encodeutils
|
|
||||||
|
|
||||||
from heatclient.openstack.common.apiclient import base
|
from heatclient.openstack.common.apiclient import base
|
||||||
from heatclient.v1 import stacks
|
from heatclient.v1 import stacks
|
||||||
|
|
||||||
|
@@ -14,13 +14,13 @@
|
|||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
|
from oslo_serialization import jsonutils
|
||||||
|
from oslo_utils import strutils
|
||||||
import six
|
import six
|
||||||
from six.moves.urllib import request
|
from six.moves.urllib import request
|
||||||
import yaml
|
import yaml
|
||||||
|
|
||||||
from oslo.serialization import jsonutils
|
|
||||||
from oslo.utils import strutils
|
|
||||||
|
|
||||||
from heatclient.common import deployment_utils
|
from heatclient.common import deployment_utils
|
||||||
from heatclient.common import template_format
|
from heatclient.common import template_format
|
||||||
from heatclient.common import template_utils
|
from heatclient.common import template_utils
|
||||||
|
Reference in New Issue
Block a user