From 5c880ed82f8bb60789acc877ec6119caf5de6762 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 --- src/plugins/FtmStyleDescendants.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugins/FtmStyleDescendants.py b/src/plugins/FtmStyleDescendants.py index a297cfae5..51aa5a547 100644 --- a/src/plugins/FtmStyleDescendants.py +++ b/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