TrivialFix: Remove logging import unused

This patch removes logging import unused in
    ironic/api/middleware/auth_token.py

Change-Id: I187cb1b4fa057e33e58a2e1bd53ad90b945ff00c
This commit is contained in:
Tran Ha Tuyen 2017-04-26 17:27:32 +07:00
parent fc85902c55
commit cd10872ff9
1 changed files with 0 additions and 3 deletions

View File

@ -15,14 +15,11 @@
import re
from keystonemiddleware import auth_token
from oslo_log import log
from ironic.common import exception
from ironic.common.i18n import _
from ironic.common import utils
LOG = log.getLogger(__name__)
class AuthTokenMiddleware(auth_token.AuthProtocol):
"""A wrapper on Keystone auth_token middleware.