* src/plugins/DetAncestralReport.py: fix child strings

svn: r5340
This commit is contained in:
Don Allingham 2005-10-20 04:56:42 +00:00
parent e2ad8af4bd
commit 98361ec0b0
2 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,5 @@
2005-10-19 Don Allingham <don@gramps-project.org>
* src/plugins/DetAncestralReport.py: fix child strings
* src/GrampsBSDDB.py: use cursors to rebuild secondary indices.
* src/Sources.py: fix typo on gladeif call

View File

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