is_equal called on handle

svn: r19261
This commit is contained in:
Michiel Nauta 2012-04-07 11:26:45 +00:00
parent c29763c6f2
commit 96dcf2f0c1

View File

@ -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