diff options
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/ui/crumbs/tasklistmodel.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/tasklistmodel.py b/bitbake/lib/bb/ui/crumbs/tasklistmodel.py index 518232dc35..90a7e5459c 100644 --- a/bitbake/lib/bb/ui/crumbs/tasklistmodel.py +++ b/bitbake/lib/bb/ui/crumbs/tasklistmodel.py | |||
@@ -432,7 +432,7 @@ class TaskListModel(gtk.ListStore): | |||
432 | self[item_path][self.COL_INC] = True | 432 | self[item_path][self.COL_INC] = True |
433 | 433 | ||
434 | item_bin = self[item_path][self.COL_BINB].split(', ') | 434 | item_bin = self[item_path][self.COL_BINB].split(', ') |
435 | if not binb in item_bin: | 435 | if binb and not binb in item_bin: |
436 | item_bin.append(binb) | 436 | item_bin.append(binb) |
437 | self[item_path][self.COL_BINB] = ', '.join(item_bin).lstrip(', ') | 437 | self[item_path][self.COL_BINB] = ', '.join(item_bin).lstrip(', ') |
438 | 438 | ||