From 10b88a5cc0e0c05aab6f00f6d8ef9c4f41817d3a Mon Sep 17 00:00:00 2001 From: Michiel Nauta Date: Sat, 7 Apr 2012 11:27:17 +0000 Subject: [PATCH] is_equal called on handle svn: r19262 --- src/gen/lib/event.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gen/lib/event.py b/src/gen/lib/event.py index 0ca340886..7897eb34e 100644 --- a/src/gen/lib/event.py +++ b/src/gen/lib/event.py @@ -283,7 +283,8 @@ class Event(CitationBase, NoteBase, MediaBase, AttributeBase, index = 0 olist = other.get_citation_list() for a in self.get_citation_list(): - if not a.is_equal(olist[index]): + # see comment in srefs_are_equal in gen/plug/report/_bibliography.py + if a != olist[index]: return False index += 1