Remove all imports from oslo namespace

oslo namespace is deprecated

Change-Id: I345eb210222d8e973b99f27821099f52883ab27d
This commit is contained in:
Andrey Kurilin 2015-01-26 16:37:53 +02:00
parent 9799353781
commit ccff3d3c94
20 changed files with 27 additions and 27 deletions

View File

@ -28,8 +28,8 @@ import re
import socket import socket
from keystoneclient import adapter from keystoneclient import adapter
from oslo.utils import importutils from oslo_utils import importutils
from oslo.utils import netutils from oslo_utils import netutils
import requests import requests
from requests import adapters from requests import adapters

View File

@ -10,16 +10,16 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
"""oslo.i18n integration module for novaclient. """oslo_i18n integration module for novaclient.
See http://docs.openstack.org/developer/oslo.i18n/usage.html . See http://docs.openstack.org/developer/oslo.i18n/usage.html .
""" """
from oslo import i18n import oslo_i18n
_translators = i18n.TranslatorFactory(domain='novaclient') _translators = oslo_i18n.TranslatorFactory(domain='novaclient')
# The primary translation function using the well-known name "_" # The primary translation function using the well-known name "_"
_ = _translators.primary _ = _translators.primary

View File

@ -33,8 +33,8 @@ from keystoneclient.auth.identity.generic import password
from keystoneclient.auth.identity.generic import token from keystoneclient.auth.identity.generic import token
from keystoneclient.auth.identity import v3 as identity from keystoneclient.auth.identity import v3 as identity
from keystoneclient import session as ksession from keystoneclient import session as ksession
from oslo.utils import encodeutils from oslo_utils import encodeutils
from oslo.utils import strutils from oslo_utils import strutils
import pkg_resources import pkg_resources
import six import six

View File

@ -10,7 +10,7 @@
# 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.serialization import jsonutils from oslo_serialization import jsonutils
from novaclient.tests.unit import fakes from novaclient.tests.unit import fakes
from novaclient.tests.unit.fixture_data import base from novaclient.tests.unit.fixture_data import base

View File

@ -10,7 +10,7 @@
# 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.serialization import jsonutils from oslo_serialization import jsonutils
from six.moves.urllib import parse from six.moves.urllib import parse
from novaclient.tests.unit.fixture_data import base from novaclient.tests.unit.fixture_data import base

View File

@ -10,7 +10,7 @@
# 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.serialization import jsonutils from oslo_serialization import jsonutils
from novaclient.tests.unit import fakes from novaclient.tests.unit import fakes
from novaclient.tests.unit.fixture_data import base from novaclient.tests.unit.fixture_data import base

View File

@ -10,7 +10,7 @@
# 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.serialization import jsonutils from oslo_serialization import jsonutils
from novaclient.tests.unit import fakes from novaclient.tests.unit import fakes
from novaclient.tests.unit.fixture_data import base from novaclient.tests.unit.fixture_data import base

View File

@ -10,7 +10,7 @@
# 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.serialization import jsonutils from oslo_serialization import jsonutils
from novaclient.tests.unit.fixture_data import base from novaclient.tests.unit.fixture_data import base

View File

@ -10,7 +10,7 @@
# 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.serialization import jsonutils from oslo_serialization import jsonutils
from novaclient.tests.unit import fakes from novaclient.tests.unit import fakes
from novaclient.tests.unit.fixture_data import base from novaclient.tests.unit.fixture_data import base

View File

@ -10,7 +10,7 @@
# 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.serialization import jsonutils from oslo_serialization import jsonutils
from novaclient.tests.unit import fakes from novaclient.tests.unit import fakes
from novaclient.tests.unit.fixture_data import base from novaclient.tests.unit.fixture_data import base

View File

@ -10,7 +10,7 @@
# 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.serialization import jsonutils from oslo_serialization import jsonutils
from novaclient.tests.unit.fixture_data import base from novaclient.tests.unit.fixture_data import base

View File

@ -10,7 +10,7 @@
# 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.serialization import jsonutils from oslo_serialization import jsonutils
from novaclient.tests.unit import fakes from novaclient.tests.unit import fakes
from novaclient.tests.unit.fixture_data import base from novaclient.tests.unit.fixture_data import base

View File

@ -15,7 +15,7 @@ import os
import fixtures import fixtures
import mock import mock
from oslo.serialization import jsonutils from oslo_serialization import jsonutils
import requests import requests
from requests_mock.contrib import fixture as requests_mock_fixture from requests_mock.contrib import fixture as requests_mock_fixture
import six import six

View File

@ -17,7 +17,7 @@
import datetime import datetime
import mock import mock
from oslo.utils import strutils from oslo_utils import strutils
import six import six
from six.moves.urllib import parse from six.moves.urllib import parse

View File

@ -13,7 +13,7 @@
# under the License. # under the License.
import mock import mock
from oslo.serialization import jsonutils from oslo_serialization import jsonutils
import six import six
from novaclient import exceptions from novaclient import exceptions

View File

@ -22,7 +22,7 @@ import os
import fixtures import fixtures
import mock import mock
from oslo.utils import timeutils from oslo_utils import timeutils
import six import six
from six.moves import builtins from six.moves import builtins

View File

@ -18,8 +18,8 @@ import textwrap
import time import time
import uuid import uuid
from oslo.serialization import jsonutils from oslo_serialization import jsonutils
from oslo.utils import encodeutils from oslo_utils import encodeutils
import pkg_resources import pkg_resources
import prettytable import prettytable
import six import six

View File

@ -16,7 +16,7 @@
Flavor interface. Flavor interface.
""" """
from oslo.utils import strutils from oslo_utils import strutils
from six.moves.urllib import parse from six.moves.urllib import parse
from novaclient import base from novaclient import base

View File

@ -21,7 +21,7 @@ Server interface.
import base64 import base64
from oslo.utils import encodeutils from oslo_utils import encodeutils
import six import six
from six.moves.urllib import parse from six.moves.urllib import parse

View File

@ -28,9 +28,9 @@ import os
import sys import sys
import time import time
from oslo.utils import encodeutils from oslo_utils import encodeutils
from oslo.utils import strutils from oslo_utils import strutils
from oslo.utils import timeutils from oslo_utils import timeutils
import six import six
from novaclient import client from novaclient import client