From e02df43a6648c6a4d4e6811783da8ee5e40cacd7 Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Wed, 16 Dec 2009 18:55:45 +0000 Subject: [PATCH] Fixed incorrect fix (thanks Gerald) svn: r13827 --- .../Rules/Person/_IsMoreThanNthGenerationDescendantOf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Filters/Rules/Person/_IsMoreThanNthGenerationDescendantOf.py b/src/Filters/Rules/Person/_IsMoreThanNthGenerationDescendantOf.py index 47ba26309..ac6ba626b 100644 --- a/src/Filters/Rules/Person/_IsMoreThanNthGenerationDescendantOf.py +++ b/src/Filters/Rules/Person/_IsMoreThanNthGenerationDescendantOf.py @@ -60,7 +60,7 @@ class IsMoreThanNthGenerationDescendantOf(Rule): pass def reset(self): - self.map.reset() + self.map.clear() def apply(self,db,person): return person.handle in self.map