From a17334e85869bf78d63df1b2336d68980a0b359f Mon Sep 17 00:00:00 2001 From: Joshua Lock Date: Tue, 23 Aug 2011 16:34:50 -0700 Subject: 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 --- lib/bb/ui/crumbs/tasklistmodel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') 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: -- cgit 1.2.3-korg