diff options
author | Joshua Lock <josh@linux.intel.com> | 2011-08-23 16:34:50 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-24 19:49:33 -0700 |
commit | 39e90c81d73ac06c7b3472d8894f3d194f9d67c8 (patch) | |
tree | 39638f26489a2c9fa8a120a0f22cc64f91c9e517 /bitbake/lib | |
parent | 8ac3cec827794b784d386b63431970330276d564 (diff) | |
download | poky-39e90c81d73ac06c7b3472d8894f3d194f9d67c8.tar.gz |
bb/ui/crumbs/tasklistmodel: fix find_reverse_depends method
This fixes an embarassing typo which meant the method actually returned a
list of packages which didn't depend on the passed pn.
(Bitbake rev: a17334e85869bf78d63df1b2336d68980a0b359f)
Signed-off-by: Joshua Lock <josh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-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 3921581139..5ff1f5a6bb 100644 --- a/bitbake/lib/bb/ui/crumbs/tasklistmodel.py +++ b/bitbake/lib/bb/ui/crumbs/tasklistmodel.py | |||
@@ -577,7 +577,7 @@ class TaskListModel(gtk.ListStore): | |||
577 | if not itype == 'package': | 577 | if not itype == 'package': |
578 | continue | 578 | continue |
579 | 579 | ||
580 | if pn not in deps: | 580 | if pn in deps: |
581 | revdeps.append(name) | 581 | revdeps.append(name) |
582 | 582 | ||
583 | if pn in revdeps: | 583 | if pn in revdeps: |