diff options
author | Joshua Lock <josh@linux.intel.com> | 2010-11-11 10:13:08 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-12-07 12:49:09 +0000 |
commit | 96da2ea1f9d3cc6589e186413c90f61fe86436d5 (patch) | |
tree | 6fe6f91af24d8b4ecf2ddb53a5a8b7d4951a049e | |
parent | 4336d676d44b18242691306d319b4c57fb591ced (diff) | |
download | openembedded-core-96da2ea1f9d3cc6589e186413c90f61fe86436d5.tar.gz openembedded-core-96da2ea1f9d3cc6589e186413c90f61fe86436d5.tar.bz2 openembedded-core-96da2ea1f9d3cc6589e186413c90f61fe86436d5.zip |
bitbake/crumbs: Fix crumbs UI for bitbake event class name changes
Some of the events we where trying to look for have had their class names
changed, fix these references.
Signed-off-by: Joshua Lock <josh@linux.intel.com>
-rw-r--r-- | bitbake/lib/bb/ui/crumbs/runningbuild.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/runningbuild.py b/bitbake/lib/bb/ui/crumbs/runningbuild.py index b4416ecbb3..6f77b83c69 100644 --- a/bitbake/lib/bb/ui/crumbs/runningbuild.py +++ b/bitbake/lib/bb/ui/crumbs/runningbuild.py @@ -67,11 +67,12 @@ class RunningBuild (gobject.GObject): (package, task) = self.pids_to_task[pid] parent = self.tasks_to_iter[(package, task)] - if isinstance(event, bb.msg.Msg): + if isinstance(event, bb.msg.MsgBase): + # Set a pretty icon for the message based on it's type. if isinstance(event, bb.msg.MsgWarn): icon = "dialog-warning" - elif isinstance(event, bb.msg.MsgErr): + elif isinstance(event, bb.msg.MsgError): icon = "dialog-error" else: icon = None @@ -128,7 +129,7 @@ class RunningBuild (gobject.GObject): # Mark this task as active. self.model.set(i, self.model.COL_ICON, "gtk-execute") - elif isinstance(event, bb.build.Task): + elif isinstance(event, bb.build.TaskBase): if isinstance(event, bb.build.TaskFailed): # Mark the task as failed |