From dff9714b6e922a67f416806faac7689aee90b13f Mon Sep 17 00:00:00 2001 From: Don Allingham Date: Sun, 19 Jan 2003 15:15:07 +0000 Subject: [PATCH] Changed write_text to write_raw when generating a table svn: r1260 --- src/plugins/WebPage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/WebPage.py b/src/plugins/WebPage.py index a0b2ef806..b0e36d8b5 100644 --- a/src/plugins/WebPage.py +++ b/src/plugins/WebPage.py @@ -728,7 +728,7 @@ class WebReport(Report.Report): doc.write_text(name) doc.end_link() if col_len <= 0 and end_col == 0: - doc.write_text('') + doc.write_raw('') doc.start_paragraph('IndexLabel') doc.write_text(_("%s (continued)") % name[0]) doc.end_paragraph()