from i18n import _ when quoting them
Change-Id: Ic40decb87f3e569953e2d1586449893eea897410 Closes-Bug:#1836342
This commit is contained in:
parent
ad39d21b92
commit
72111bbe51
@ -21,6 +21,7 @@ from eventlet import greenthread
|
||||
from oslo_log import log as logging
|
||||
from oslo_utils import excutils
|
||||
|
||||
from tacker._i18n import _
|
||||
from tacker.common import utils
|
||||
|
||||
|
||||
|
@ -15,6 +15,7 @@ from oslo_config import cfg
|
||||
from oslo_log import log as logging
|
||||
from oslo_serialization import jsonutils
|
||||
from six.moves.urllib import parse
|
||||
from tacker._i18n import _
|
||||
from tacker.vnfm.monitor_drivers.token import Token
|
||||
from tacker import wsgi
|
||||
# check alarm url with db --> move to plugin
|
||||
|
@ -22,6 +22,7 @@ from six import iteritems
|
||||
from six.moves.urllib import parse as urllib_parse
|
||||
from webob import exc
|
||||
|
||||
from tacker._i18n import _
|
||||
from tacker.common import constants
|
||||
from tacker.common import exceptions
|
||||
from tacker import wsgi
|
||||
|
@ -25,6 +25,7 @@ import six
|
||||
import webob.dec
|
||||
import webob.exc
|
||||
|
||||
from tacker._i18n import _
|
||||
from tacker.common import exceptions
|
||||
import tacker.extensions
|
||||
from tacker import policy
|
||||
|
@ -20,6 +20,7 @@ from oslo_log import log as logging
|
||||
from oslo_utils import uuidutils
|
||||
import six
|
||||
|
||||
from tacker._i18n import _
|
||||
from tacker.common import exceptions as n_exc
|
||||
|
||||
|
||||
|
@ -19,6 +19,7 @@ import webob.exc
|
||||
from oslo_log import log as logging
|
||||
from oslo_utils import strutils
|
||||
|
||||
from tacker._i18n import _
|
||||
from tacker.api import api_common
|
||||
from tacker.api.v1 import attributes
|
||||
from tacker.api.v1 import resource as wsgi_resource
|
||||
|
@ -17,6 +17,7 @@ import webob.dec
|
||||
|
||||
import oslo_i18n
|
||||
|
||||
from tacker._i18n import _
|
||||
from tacker.api.views import versions as versions_view
|
||||
from tacker import wsgi
|
||||
|
||||
|
@ -24,6 +24,7 @@ from oslo_config import cfg
|
||||
import oslo_i18n
|
||||
from oslo_service import service as common_service
|
||||
|
||||
from tacker._i18n import _
|
||||
from tacker.common import config
|
||||
from tacker import objects
|
||||
from tacker import service
|
||||
|
@ -25,6 +25,7 @@ from oslo_log import log as logging
|
||||
import oslo_messaging
|
||||
from paste import deploy
|
||||
|
||||
from tacker._i18n import _
|
||||
from tacker.common import utils
|
||||
from tacker import version
|
||||
|
||||
|
@ -19,6 +19,8 @@ from oslo_log import log as logging
|
||||
|
||||
import stevedore.named
|
||||
|
||||
from tacker._i18n import _
|
||||
|
||||
LOG = logging.getLogger(__name__)
|
||||
|
||||
|
||||
|
@ -22,6 +22,7 @@ from six import iteritems
|
||||
from sqlalchemy.orm import exc as orm_exc
|
||||
from sqlalchemy import sql
|
||||
|
||||
from tacker._i18n import _
|
||||
from tacker.common import exceptions as n_exc
|
||||
from tacker.db import sqlalchemyutils
|
||||
|
||||
|
@ -20,6 +20,7 @@ from alembic import script as alembic_script
|
||||
from alembic import util as alembic_util
|
||||
from oslo_config import cfg
|
||||
|
||||
from tacker._i18n import _
|
||||
from tacker.db.migration.models import head # noqa
|
||||
from tacker.db.migration import purge_tables
|
||||
|
||||
|
@ -21,6 +21,7 @@ from sqlalchemy import inspect
|
||||
|
||||
from oslo_utils import timeutils
|
||||
|
||||
from tacker._i18n import _
|
||||
from tacker.common import exceptions
|
||||
|
||||
|
||||
|
@ -17,6 +17,7 @@ from six import moves
|
||||
import sqlalchemy
|
||||
from sqlalchemy.orm.properties import RelationshipProperty
|
||||
|
||||
from tacker._i18n import _
|
||||
from tacker.common import exceptions as n_exc
|
||||
|
||||
|
||||
|
@ -26,6 +26,7 @@ from sqlalchemy import orm
|
||||
from sqlalchemy.orm import exc as orm_exc
|
||||
from sqlalchemy import schema
|
||||
|
||||
from tacker._i18n import _
|
||||
from tacker.api.v1 import attributes
|
||||
from tacker.common import exceptions
|
||||
from tacker import context as t_context
|
||||
|
@ -17,6 +17,7 @@ import abc
|
||||
|
||||
import six
|
||||
|
||||
from tacker._i18n import _
|
||||
from tacker.api import extensions
|
||||
from tacker.api.v1 import attributes as attr
|
||||
from tacker.api.v1 import resource_helper
|
||||
|
@ -13,6 +13,7 @@
|
||||
import abc
|
||||
import six
|
||||
|
||||
from tacker._i18n import _
|
||||
from tacker.common import exceptions
|
||||
from tacker.services import service_base
|
||||
|
||||
|
@ -18,6 +18,7 @@ import abc
|
||||
from oslo_log import log as logging
|
||||
import six
|
||||
|
||||
from tacker._i18n import _
|
||||
from tacker.api import extensions
|
||||
from tacker.api.v1 import attributes as attr
|
||||
from tacker.api.v1 import base
|
||||
|
@ -18,6 +18,7 @@ from oslo_log import log as logging
|
||||
import oslo_messaging
|
||||
from oslo_service import periodic_task
|
||||
|
||||
from tacker._i18n import _
|
||||
from tacker.common import utils
|
||||
|
||||
|
||||
|
@ -16,6 +16,7 @@
|
||||
Common utilities and helper functions for Openstack Networking Plugins.
|
||||
"""
|
||||
|
||||
from tacker._i18n import _
|
||||
from tacker.common import exceptions as n_exc
|
||||
from tacker.common import utils
|
||||
from tacker.plugins.common import constants
|
||||
|
@ -26,6 +26,7 @@ from oslo_service import service
|
||||
from oslo_utils import excutils
|
||||
from oslo_utils import importutils
|
||||
|
||||
from tacker._i18n import _
|
||||
from tacker.common import config
|
||||
from tacker.common import rpc as n_rpc
|
||||
from tacker import context
|
||||
|
@ -15,6 +15,7 @@
|
||||
|
||||
import testtools
|
||||
|
||||
from tacker._i18n import _
|
||||
from tacker.api.v1 import attributes
|
||||
from tacker.common import exceptions as n_exc
|
||||
from tacker.tests import base
|
||||
|
@ -17,6 +17,7 @@ import mock
|
||||
from webob import exc
|
||||
import webtest
|
||||
|
||||
from tacker._i18n import _
|
||||
from tacker.api.v1 import resource as wsgi_resource
|
||||
from tacker.common import exceptions as n_exc
|
||||
from tacker import context
|
||||
|
@ -20,6 +20,7 @@ from mock import patch
|
||||
from oslo_utils import uuidutils
|
||||
import yaml
|
||||
|
||||
from tacker._i18n import _
|
||||
from tacker.common import exceptions
|
||||
from tacker import context
|
||||
from tacker.db.common_services import common_services_db_plugin
|
||||
|
@ -20,6 +20,8 @@ import yaml
|
||||
from collections import OrderedDict
|
||||
from oslo_log import log as logging
|
||||
from oslo_utils import uuidutils
|
||||
|
||||
from tacker._i18n import _
|
||||
from tacker.common import exceptions
|
||||
from tacker.common import log
|
||||
from tacker.common import utils
|
||||
|
@ -21,6 +21,7 @@ from oslo_config import cfg
|
||||
from oslo_log import log as logging
|
||||
from oslo_serialization import jsonutils
|
||||
|
||||
from tacker._i18n import _
|
||||
from tacker.common.container import kubernetes_utils
|
||||
from tacker.common import log
|
||||
from tacker.common import utils
|
||||
|
@ -21,6 +21,7 @@ from oslo_log import log as logging
|
||||
from oslo_serialization import jsonutils
|
||||
import yaml
|
||||
|
||||
from tacker._i18n import _
|
||||
from tacker.common import log
|
||||
from tacker.common import utils
|
||||
from tacker.extensions import vnfm
|
||||
|
@ -19,6 +19,7 @@ from toscaparser.utils import yamlparser
|
||||
from translator.hot import tosca_translator
|
||||
import yaml
|
||||
|
||||
from tacker._i18n import _
|
||||
from tacker.common import exceptions
|
||||
from tacker.common import log
|
||||
from tacker.extensions import common_services as cs
|
||||
|
@ -19,6 +19,7 @@ from oslo_log import log as logging
|
||||
from oslo_serialization import jsonutils
|
||||
import yaml
|
||||
|
||||
from tacker._i18n import _
|
||||
from tacker.common import cmd_executer
|
||||
from tacker.common import exceptions
|
||||
from tacker.common import log
|
||||
|
@ -25,6 +25,7 @@ from oslo_log import log as logging
|
||||
from oslo_serialization import jsonutils
|
||||
from oslo_utils import timeutils
|
||||
|
||||
from tacker._i18n import _
|
||||
from tacker.common import driver_manager
|
||||
from tacker.common import exceptions
|
||||
from tacker import context as t_context
|
||||
|
@ -18,6 +18,7 @@ from oslo_config import cfg
|
||||
from oslo_log import log as logging
|
||||
import random
|
||||
import string
|
||||
from tacker._i18n import _
|
||||
from tacker.common import utils
|
||||
from tacker.vnfm.monitor_drivers import abstract_driver
|
||||
|
||||
|
@ -19,6 +19,7 @@ from oslo_log import log as logging
|
||||
import six.moves.urllib.error as urlerr
|
||||
import six.moves.urllib.request as urlreq
|
||||
|
||||
from tacker._i18n import _
|
||||
from tacker.common import log
|
||||
from tacker.vnfm.monitor_drivers import abstract_driver
|
||||
|
||||
|
@ -17,6 +17,7 @@ import netaddr
|
||||
from oslo_config import cfg
|
||||
from oslo_log import log as logging
|
||||
|
||||
from tacker._i18n import _
|
||||
from tacker.agent.linux import utils as linux_utils
|
||||
from tacker.common import log
|
||||
from tacker.vnfm.monitor_drivers import abstract_driver
|
||||
|
@ -25,6 +25,7 @@ from oslo_utils import excutils
|
||||
from oslo_utils import uuidutils
|
||||
from toscaparser.tosca_template import ToscaTemplate
|
||||
|
||||
from tacker._i18n import _
|
||||
from tacker.api.v1 import attributes
|
||||
from tacker.common import driver_manager
|
||||
from tacker.common import exceptions
|
||||
|
@ -40,6 +40,7 @@ import six
|
||||
import webob.dec
|
||||
import webob.exc
|
||||
|
||||
from tacker._i18n import _
|
||||
from tacker.common import exceptions as exception
|
||||
from tacker import context
|
||||
from tacker.db import api
|
||||
|
Loading…
Reference in New Issue
Block a user