From 45d3413028505149baf3bc6f9f580ce5dfebf671 Mon Sep 17 00:00:00 2001 From: Alex Roitman Date: Mon, 2 Jun 2003 19:55:53 +0000 Subject: [PATCH] * src/plugins/FtmStyleDescendants.py (print_children): End children's table only if it was started. svn: r1637 --- gramps2/src/plugins/FtmStyleDescendants.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gramps2/src/plugins/FtmStyleDescendants.py b/gramps2/src/plugins/FtmStyleDescendants.py index a297cfae5..51aa5a547 100644 --- a/gramps2/src/plugins/FtmStyleDescendants.py +++ b/gramps2/src/plugins/FtmStyleDescendants.py @@ -692,7 +692,8 @@ class FtmDescendantReport(Report.Report): self.doc.end_cell() self.doc.end_row() - self.doc.end_table() + if not first: + self.doc.end_table() first = 1