summaryrefslogtreecommitdiff
path: root/ironic/drivers/modules/snmp.py
diff options
context:
space:
mode:
authorGhe Rivero <ghe.rivero@hp.com>2015-02-19 11:50:25 -0800
committerGhe Rivero <ghe.rivero@hp.com>2015-05-05 08:43:28 +0200
commitaafeed2f85be5424aef478a4c0cc12c2ca5a2d32 (patch)
tree6c81188c104590b6939270dbc1a0429d5e4e731b /ironic/drivers/modules/snmp.py
parentf1635d0cd8346b24eeab383551a2db97c4f4f9de (diff)
downloadironic-aafeed2f85be5424aef478a4c0cc12c2ca5a2d32.tar.gz
Use oslo_log lib
Module 'log' from oslo-incubator was removed after release of oslo_log library. Change-Id: I4261083dae076cea66c42ad16eb82a5faaeb1a65
Diffstat (limited to 'ironic/drivers/modules/snmp.py')
-rw-r--r--ironic/drivers/modules/snmp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ironic/drivers/modules/snmp.py b/ironic/drivers/modules/snmp.py
index 7a252c691..3772e8d8a 100644
--- a/ironic/drivers/modules/snmp.py
+++ b/ironic/drivers/modules/snmp.py
@@ -30,6 +30,7 @@ models.
import abc
from oslo_config import cfg
+from oslo_log import log as logging
from oslo_utils import importutils
import six
@@ -39,7 +40,6 @@ from ironic.common.i18n import _LW
from ironic.common import states
from ironic.conductor import task_manager
from ironic.drivers import base
-from ironic.openstack.common import log as logging
from ironic.openstack.common import loopingcall
pysnmp = importutils.try_import('pysnmp')