diff options
author | Joshua Lock <josh@linux.intel.com> | 2011-08-30 10:55:14 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-30 21:57:15 +0100 |
commit | e853d0a3781614c9876b225059de7e735938acf3 (patch) | |
tree | 291fd201220369e0b9202a1a9bf96abb6aa8ed3a /bitbake | |
parent | ea33ddc6a4d38cc6c86ca5fba03fa155ef8a44d8 (diff) | |
download | poky-e853d0a3781614c9876b225059de7e735938acf3.tar.gz |
ui/crumbs/tasklistmodel: don't add empty entries to COL_BINB
(Bitbake rev: 85c5b8b3b9c805883537900a46eddb2301ee93f9)
Signed-off-by: Joshua Lock <josh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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 | ||