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>
This commit is contained in:
Joshua Lock
2011-08-23 16:34:50 -07:00
committed by Richard Purdie
parent 8ac3cec827
commit 39e90c81d7

View File

@@ -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: