Drop unused logger from keymgr/__init__.py

Change-Id: I930be566f68c206d94f0e42432fe93b4135bcd42
This commit is contained in:
Dan Prince 2013-09-12 12:07:00 -04:00
parent a0d785868c
commit b869796847
1 changed files with 0 additions and 3 deletions

View File

@ -18,7 +18,6 @@
from oslo.config import cfg
from nova.openstack.common import importutils
from nova.openstack.common import log as logging
keymgr_opts = [
@ -30,8 +29,6 @@ keymgr_opts = [
CONF = cfg.CONF
CONF.register_opts(keymgr_opts, group='keymgr')
LOG = logging.getLogger(__name__)
def API():
cls = importutils.import_class(CONF.keymgr.api_class)