Merge "remove unused LOG"

This commit is contained in:
Jenkins
2016-09-04 18:49:58 +00:00
committed by Gerrit Code Review
2 changed files with 0 additions and 8 deletions

View File

@@ -17,17 +17,12 @@
"""Manage access to the clients, including authenticating when needed.
"""
import logging
import debtcollector.renames
from neutronclient import client
from neutronclient.neutron import client as neutron_client
LOG = logging.getLogger(__name__)
class ClientCache(object):
"""Descriptor class for caching created client handles."""

View File

@@ -13,15 +13,12 @@
# License for the specific language governing permissions and limitations
# under the License.
import logging
from oslo_serialization import jsonutils
import six
from neutronclient._i18n import _
from neutronclient.common import exceptions as exception
LOG = logging.getLogger(__name__)
if six.PY3:
long = int