diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-04-09 13:25:34 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-02 15:41:31 +0100 |
commit | 8c5108fa21da80e30c623732a2c8ca83639488c4 (patch) | |
tree | 4929f59aeffc08079a2eb1eadf7bda390a59ddc9 | |
parent | 87f62d7c8d386df0d613da4f48c0b210902ab621 (diff) | |
download | openembedded-core-8c5108fa21da80e30c623732a2c8ca83639488c4.tar.gz openembedded-core-8c5108fa21da80e30c623732a2c8ca83639488c4.tar.bz2 openembedded-core-8c5108fa21da80e30c623732a2c8ca83639488c4.zip |
Fix the task event handling in the ncurses UI
(Bitbake rev: 50b7b817d418532583da3bad62a36fcefe3637a2)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
-rw-r--r-- | bitbake/lib/bb/ui/ncurses.py | 2 |
1 files changed, 1 insertions, 1 deletions
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') |