Merge "Remove unused logging import"

This commit is contained in:
Jenkins 2017-03-22 02:50:44 +00:00 committed by Gerrit Code Review
commit 7ccf18786b
3 changed files with 0 additions and 9 deletions

View File

@ -25,12 +25,9 @@ from neutron_taas._i18n import _
from neutron_taas.common import constants
from oslo_config import cfg
from oslo_log import log as logging
import six
LOG = logging.getLogger(__name__)
# TaaS exception handling classes

View File

@ -17,9 +17,6 @@ from oslo_config import cfg
import oslo_messaging as messaging
from neutron.common import rpc as n_rpc
from oslo_log import log as logging
LOG = logging.getLogger(__name__)
TaasOpts = [
cfg.StrOpt(

View File

@ -14,11 +14,8 @@
import abc
from oslo_log import log as logging
import six
LOG = logging.getLogger(__name__)
@six.add_metaclass(abc.ABCMeta)
class TaasBaseDriver(object):