| Submitter | git@git.openembedded.org |
|---|---|
| Date | Dec. 20, 2011, 1:21 p.m. |
| Message ID | <20111220132128.4520210333@opal> |
| Download | mbox | patch |
| Permalink | /patch/17301/ |
| State | Not Applicable |
| Headers | show |
Comments
Patch
diff --git a/lib/bb/ui/crumbs/runningbuild.py b/lib/bb/ui/crumbs/runningbuild.py index 509590a..4f609fc 100644 --- a/lib/bb/ui/crumbs/runningbuild.py +++ b/lib/bb/ui/crumbs/runningbuild.py @@ -179,6 +179,10 @@ class RunningBuild (gobject.GObject): # that we need to attach to a task. self.tasks_to_iter[(package, task)] = i + # If we don't handle these the GUI does not proceed + elif isinstance(event, bb.build.TaskInvalid): + return + elif isinstance(event, bb.build.TaskBase): current = self.tasks_to_iter[(package, task)] parent = self.tasks_to_iter[(package, None)]