summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/ui/crumbs/tasklistmodel.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/tasklistmodel.py b/bitbake/lib/bb/ui/crumbs/tasklistmodel.py
index 14a611f5e4..790631fc98 100644
--- a/bitbake/lib/bb/ui/crumbs/tasklistmodel.py
+++ b/bitbake/lib/bb/ui/crumbs/tasklistmodel.py
@@ -436,9 +436,8 @@ class TaskListModel(gtk.ListStore):
436 def include_item(self, item_path, binb="", image_contents=False): 436 def include_item(self, item_path, binb="", image_contents=False):
437 item_name = self[item_path][self.COL_NAME] 437 item_name = self[item_path][self.COL_NAME]
438 item_deps = self[item_path][self.COL_DEPS] 438 item_deps = self[item_path][self.COL_DEPS]
439 item_inc = self[item_path][self.COL_INC] 439
440 if not item_inc: 440 self[item_path][self.COL_INC] = True
441 self[item_path][self.COL_INC] = True
442 441
443 item_bin = self[item_path][self.COL_BINB].split(', ') 442 item_bin = self[item_path][self.COL_BINB].split(', ')
444 if not binb in item_bin: 443 if not binb in item_bin: