Remove unused logging import

remove unused logging import,
and change import order in /octavia/common/keystone.py for pep8 check

Change-Id: Iede900e646a801d71cf546ee8aa57c4a9de1d3fa
This commit is contained in:
zoushilin 2017-03-24 15:21:42 +08:00
parent f74a130f87
commit f44606c2e0
2 changed files with 1 additions and 8 deletions

View File

@ -12,7 +12,6 @@
# License for the specific language governing permissions and limitations
# under the License.
import logging
import os
import re
import socket
@ -28,8 +27,6 @@ from octavia.amphorae.backends.agent import api_server
from octavia.amphorae.backends.agent.api_server import util
from octavia.common import constants as consts
LOG = logging.getLogger(__name__)
class AmphoraInfo(object):
def __init__(self, osutils):

View File

@ -13,12 +13,8 @@
# under the License.
from keystoneauth1 import loading as ks_loading
from oslo_config import cfg
from oslo_log import log as logging
from octavia.common import constants
LOG = logging.getLogger(__name__)
from oslo_config import cfg
class KeystoneSession(object):