typo: gramps34 uses ifilter rather than filter

svn: r23089
This commit is contained in:
Doug Blank 2013-09-12 00:49:15 +00:00
parent 5c1990e861
commit 2c5ffd3278

View File

@ -111,7 +111,7 @@ class LivingProxyDb(ProxyDbBase):
""" """
Protected version of iter_people Protected version of iter_people
""" """
for person in filter(None, self.db.iter_people()): for person in ifilter(None, self.db.iter_people()):
if self.__is_living(person): if self.__is_living(person):
if self.mode == self.MODE_EXCLUDE_ALL: if self.mode == self.MODE_EXCLUDE_ALL:
continue continue