diff --git a/ChangeLog b/ChangeLog index e6dbe3d13..9d899956f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-04-27 Brian Matherly + * src/Filters/Rules/Person/_IsLessThanNthGenerationAncestorOfBookmarked.py: + * src/Filters/Rules/Person/_RelationshopPathBetweenBookmarks.py: + Fix bookmark errors. + 2007-04-27 Benny Malengier * src/images/22x22/Makefile.am: * src/images/16x16/Makefile.am: diff --git a/src/Filters/Rules/Person/_IsLessThanNthGenerationAncestorOfBookmarked.py b/src/Filters/Rules/Person/_IsLessThanNthGenerationAncestorOfBookmarked.py index 812444cce..b1f96e3ea 100644 --- a/src/Filters/Rules/Person/_IsLessThanNthGenerationAncestorOfBookmarked.py +++ b/src/Filters/Rules/Person/_IsLessThanNthGenerationAncestorOfBookmarked.py @@ -58,7 +58,7 @@ class IsLessThanNthGenerationAncestorOfBookmarked(Rule): def prepare(self,db): self.db = db - bookmarks = self.db.get_bookmarks() + bookmarks = db.get_bookmarks().get() if len(bookmarks) == 0: self.apply = lambda db,p : False else: diff --git a/src/Filters/Rules/Person/_RelationshipPathBetweenBookmarks.py b/src/Filters/Rules/Person/_RelationshipPathBetweenBookmarks.py index fdaabad23..7a358b07b 100644 --- a/src/Filters/Rules/Person/_RelationshipPathBetweenBookmarks.py +++ b/src/Filters/Rules/Person/_RelationshipPathBetweenBookmarks.py @@ -58,7 +58,7 @@ class RelationshipPathBetweenBookmarks(Rule): def prepare(self,db): self.db = db self.map = {} - bookmarks = self.db.get_bookmarks() + bookmarks = db.get_bookmarks().get() if len(bookmarks) == 0: self.apply = lambda db,p : False else: