From: Chris Larson Date: Fri, 9 Apr 2010 20:25:34 +0000 (-0700) Subject: Fix the task event handling in the ncurses UI X-Git-Tag: 2011-1~5549 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=8c5108fa21da80e30c623732a2c8ca83639488c4;p=openembedded-core.git Fix the task event handling in the ncurses UI (Bitbake rev: 50b7b817d418532583da3bad62a36fcefe3637a2) Signed-off-by: Chris Larson Signed-off-by: Richard Purdie --- diff --git a/bitbake/lib/bb/ui/ncurses.py b/bitbake/lib/bb/ui/ncurses.py index 14310dc124..2c10f380de 100644 --- a/bitbake/lib/bb/ui/ncurses.py +++ b/bitbake/lib/bb/ui/ncurses.py @@ -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')