]> code.ossystems Code Review - openembedded-core.git/commitdiff
Fix the task event handling in the ncurses UI
authorChris Larson <chris_larson@mentor.com>
Fri, 9 Apr 2010 20:25:34 +0000 (13:25 -0700)
committerRichard Purdie <rpurdie@linux.intel.com>
Fri, 2 Jul 2010 14:41:31 +0000 (15:41 +0100)
(Bitbake rev: 50b7b817d418532583da3bad62a36fcefe3637a2)

Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
bitbake/lib/bb/ui/ncurses.py

index 14310dc1240606e15d77261f3e89f559e4ed92b6..2c10f380ded72fbbce15265dbab527ba75ad2a4f 100644 (file)
@@ -246,7 +246,7 @@ class NCursesUI:
                     continue
                 helper.eventHandler(event)
                 #mw.appendText("%s\n" % event[0])
-                if isinstance(event, bb.build.Task):
+                if isinstance(event, bb.build.TaskBase):
                     mw.appendText("NOTE: %s\n" % event._message)
                 if isinstance(event, bb.msg.MsgDebug):
                     mw.appendText('DEBUG: ' + event._message + '\n')