From 189d1f0f598462ad892c01863b193c2b8756916e Mon Sep 17 00:00:00 2001 From: Nick Hall Date: Tue, 13 Aug 2013 18:23:57 +0000 Subject: [PATCH] 6995: Fix bug in event citation filter svn: r22859 --- gramps/gen/filters/rules/event/_hascitation.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/gramps/gen/filters/rules/event/_hascitation.py b/gramps/gen/filters/rules/event/_hascitation.py index 026c38559..462337550 100644 --- a/gramps/gen/filters/rules/event/_hascitation.py +++ b/gramps/gen/filters/rules/event/_hascitation.py @@ -53,10 +53,3 @@ class HasCitation(HasCitationBase): name = _('Events with the ') description = _("Matches events with a citation of a particular " "value") - - def apply(self, dbase, event): - for citation_handle in event.get_citation_list(): - citation = dbase.get_citation_from_handle(citation_handle) - if HasCitationBase.apply(self, dbase, citation): - return True - return False