8623: Detailed Descendant Report - only first family event output

This commit is contained in:
Paul Franklin 2015-07-05 13:42:57 -07:00
parent aaa64bed8e
commit e3b4abc1e0

View File

@ -693,7 +693,7 @@ class DetDescendantReport(Report):
mother_name, father_name = self.__get_mate_names(family)
first = 1
first = True
for event_ref in family.get_event_ref_list():
if first:
self.doc.start_paragraph('DDR-MoreHeader')
@ -702,9 +702,9 @@ class DetDescendantReport(Report):
% {'mother_name' : mother_name,
'father_name' : father_name })
self.doc.end_paragraph()
first = 0
first = False
self.write_event(event_ref)
return first
return first
def __write_family_attrs(self, family, first):
"""