From 0f4284e84203353628c9a7003da82083c719b759 Mon Sep 17 00:00:00 2001 From: Paul Franklin Date: Mon, 23 Jan 2012 17:09:03 +0000 Subject: [PATCH] 5526: Complete Individual report sometimes has trailing blank page svn: r18763 --- src/plugins/textreport/IndivComplete.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/textreport/IndivComplete.py b/src/plugins/textreport/IndivComplete.py index 450b8ec57..724105516 100644 --- a/src/plugins/textreport/IndivComplete.py +++ b/src/plugins/textreport/IndivComplete.py @@ -642,7 +642,7 @@ class IndivCompleteReport(Report): self.write_addresses() self.write_note() if self.use_srcs: - if self.use_pagebreak: + if self.use_pagebreak and self.bibli.get_citation_count(): self.doc.page_break() Endnotes.write_endnotes(self.bibli, self.database, self.doc, printnotes=self.use_srcs_notes)