summaryrefslogtreecommitdiffstats
path: root/lib/bb/msg.py
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-04-08 10:22:29 -0700
committerChris Larson <chris_larson@mentor.com>2010-04-09 19:38:53 -0700
commit4fa052f426e3205ebace713eaa22deddc0420e8a (patch)
tree32b06c25d13fa1a4101c9294d1cefaecc3079b55 /lib/bb/msg.py
parent2caf134b43a44dad30af4fbe33033b3c58deee57 (diff)
downloadbitbake-4fa052f426e3205ebace713eaa22deddc0420e8a.tar.gz
Import fixups
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'lib/bb/msg.py')
-rw-r--r--lib/bb/msg.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/bb/msg.py b/lib/bb/msg.py
index 17d1a0852..788e1dddf 100644
--- a/lib/bb/msg.py
+++ b/lib/bb/msg.py
@@ -22,9 +22,10 @@ Message handling infrastructure for bitbake
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-import sys, bb
+import sys
import collections
-from bb import event
+import bb
+import bb.event
debug_level = collections.defaultdict(lambda: 0)
verbose = False
@@ -54,7 +55,7 @@ class MsgBase(bb.event.Event):
def __init__(self, msg):
self._message = msg
- event.Event.__init__(self)
+ bb.event.Event.__init__(self)
class MsgDebug(MsgBase):
"""Debug Message"""