From ca2878eb8da9ca5d710eb0e62cb7483d51ca47b8 Mon Sep 17 00:00:00 2001 From: Alessandro Pilotti Date: Mon, 7 Oct 2013 20:53:05 +0300 Subject: [PATCH] Minor refactoring in shell.py --- cloudbaseinit/shell.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cloudbaseinit/shell.py b/cloudbaseinit/shell.py index da099e84..b003af63 100644 --- a/cloudbaseinit/shell.py +++ b/cloudbaseinit/shell.py @@ -18,14 +18,14 @@ import sys from cloudbaseinit import init from cloudbaseinit.openstack.common import cfg -from cloudbaseinit.openstack.common import log as logging2 +from cloudbaseinit.openstack.common import log as logging CONF = cfg.CONF -LOG = logging2.getLogger(__name__) +LOG = logging.getLogger(__name__) def main(): CONF(sys.argv[1:]) - logging2.setup('cloudbaseinit') + logging.setup('cloudbaseinit') init.InitManager().configure_host()