is_equal called on handle

svn: r19262
This commit is contained in:
Michiel Nauta 2012-04-07 11:27:17 +00:00
parent 240a2b712f
commit 10b88a5cc0

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