From 8c964a25a0904f4153eb4fbcfb3cfd4d8a357e0c Mon Sep 17 00:00:00 2001 From: Alessio Ababilov Date: Mon, 29 Apr 2013 11:13:51 +0300 Subject: Do not import openstack.common.log in strutils strutils imports openstack.common.log that depends on notifier, rpc, eventlet, etc. This import was inherited from old utils.py and is not used in strutils. All these numerous dependencies are not desirable in such small projects as novaclient that needs strutils only. Change-Id: I7761fb53ab58bd8801448c56648dace14ca7dc89 Fixes: bug #1174215 --- openstack/common/strutils.py | 5 ----- 1 file changed, 5 deletions(-) (limited to 'openstack') diff --git a/openstack/common/strutils.py b/openstack/common/strutils.py index 5ecfb80..fe8418e 100644 --- a/openstack/common/strutils.py +++ b/openstack/common/strutils.py @@ -21,11 +21,6 @@ System-level utilities and helper functions. import sys -from openstack.common import log as logging - - -LOG = logging.getLogger(__name__) - def int_from_bool_as_string(subject): """ -- cgit