From d9a1acc4f5f25026a7ed5319eae98b78a73314d5 Mon Sep 17 00:00:00 2001 From: Brian Matherly Date: Sat, 2 Feb 2008 20:14:37 +0000 Subject: [PATCH] 0001704: Det. anc. report - newline needed after endnote entries. svn: r9985 --- ChangeLog | 4 +++- src/ReportBase/_Endnotes.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index ed8be5a0b..ad3b597cc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,6 @@ - +2008-02-02 Brian Matherly + * src/ReportBase/_Endnotes.py: + 0001704: Det. anc. report - newline needed after endnote entries. 2008-02-02 Peter LAndgren * data/man/gramps.in.1: [ \-l] -> [ \-l ] diff --git a/src/ReportBase/_Endnotes.py b/src/ReportBase/_Endnotes.py index fe14b00f4..b76ae0f84 100644 --- a/src/ReportBase/_Endnotes.py +++ b/src/ReportBase/_Endnotes.py @@ -124,7 +124,7 @@ def write_endnotes(bibliography, database, doc): doc.write_text(txt) first = False else: - doc.write_text('; %s' % txt) + doc.write_text('\n%s' % txt) rindex += 1 doc.end_paragraph()