diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index b6f4ed684..1e06b2544 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,4 +1,5 @@ 2005-10-19 Don Allingham + * src/plugins/DetAncestralReport.py: fix child strings * src/GrampsBSDDB.py: use cursors to rebuild secondary indices. * src/Sources.py: fix typo on gladeif call diff --git a/gramps2/src/plugins/DetAncestralReport.py b/gramps2/src/plugins/DetAncestralReport.py index 1760e1d71..e0bf5063f 100644 --- a/gramps2/src/plugins/DetAncestralReport.py +++ b/gramps2/src/plugins/DetAncestralReport.py @@ -405,13 +405,12 @@ class DetAncestorReport(Report.Report): self.doc.start_paragraph("DAR-ChildList",ReportUtils.roman(cnt).lower() + ".") cnt += 1 - self.doc.write_text(child_name) - text = ReportUtils.list_person_str(self.database,child) - if text: - self.doc.write_text(" : %s" % text) - else: - self.doc.write_text(".") - + self.doc.write_text("%s. " % child_name) + self.doc.write_text(ReportUtils.born_str(self.database, child, 0, + self.EMPTY_DATE, self.EMPTY_PLACE)) + self.doc.write_text(ReportUtils.died_str(self.database, child, 0, + self.EMPTY_DATE, self.EMPTY_PLACE)) + self.doc.end_paragraph() def write_mate(self, mate):