aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJoshua Lock <josh@linux.intel.com>2011-08-23 16:34:50 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-08-24 19:32:42 -0700
commita17334e85869bf78d63df1b2336d68980a0b359f (patch)
treee4b0c970e6d89818d3ead090b4a32576f58976b0 /lib
parent27dcf245abf3805be47894773406392fdf055e48 (diff)
downloadbitbake-a17334e85869bf78d63df1b2336d68980a0b359f.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. Signed-off-by: Joshua Lock <josh@linux.intel.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/bb/ui/crumbs/tasklistmodel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/ui/crumbs/tasklistmodel.py b/lib/bb/ui/crumbs/tasklistmodel.py
index 392158113..5ff1f5a6b 100644
--- a/lib/bb/ui/crumbs/tasklistmodel.py
+++ b/lib/bb/ui/crumbs/tasklistmodel.py
@@ -577,7 +577,7 @@ class TaskListModel(gtk.ListStore):
if not itype == 'package':
continue
- if pn not in deps:
+ if pn in deps:
revdeps.append(name)
if pn in revdeps: