Bug 0003230: Error while deleting family selected by any filter.

svn: r13320
This commit is contained in:
Gerald Britton 2009-10-06 20:19:56 +00:00
parent 2de9aa8404
commit 9a21141c42

View File

@ -160,7 +160,7 @@ class GenericFilter(object):
person = self.find_from_handle(db, handle)
if progress:
progress.step()
val = all(rule.apply(db, person) for rule in flist)
val = all(rule.apply(db, person) for rule in flist if person)
if val != self.invert:
final_list.append(data)
return final_list