diff --git a/gluon/sqlhtml.py b/gluon/sqlhtml.py index 701b9872..46758168 100644 --- a/gluon/sqlhtml.py +++ b/gluon/sqlhtml.py @@ -3550,8 +3550,8 @@ class ExporterHTML(ExportClass): ExportClass.__init__(self, rows) def export(self): - xml = self.rows.xml() if self.rows else '' - return '\n
\n\n\n\n%s\n\n' % (xml or '') + table = SQLTABLE(self.rows, truncate=None) if self.rows else '' + return '\n\n\n\n\n%s\n\n' % (table or '') class ExporterXML(ExportClass):