Removed bad files
authorstatsvn <>
Thu, 27 Mar 2008 08:02:16 +0000 (08:02 +0000)
committerstatsvn <>
Thu, 27 Mar 2008 08:02:16 +0000 (08:02 +0000)
bzr revid: statsvn-3da440376646cba3dc9fc405b4868635979c466c

bin/report/render/rml2pdf/trml2pdf.py

index 029d981..9a514e4 100755 (executable)
@@ -453,7 +453,7 @@ class _rml_flowable(object):
                        colwidths = [utils.unit_get(f.strip()) for f in node.getAttribute('colWidths').split(',')]
                if node.hasAttribute('rowHeights'):
                        rowheights = [utils.unit_get(f.strip()) for f in node.getAttribute('rowHeights').split(',')]
-               table = platypus.LongTable(data = data, colWidths=colwidths, rowHeights=rowheights, **(utils.attr_get(node, ['splitByRow'] ,{'repeatRows':'int','repeatCols':'int'})))
+               table = platypus.Table(data = data, colWidths=colwidths, rowHeights=rowheights, **(utils.attr_get(node, ['splitByRow'] ,{'repeatRows':'int','repeatCols':'int'})))
                if node.hasAttribute('style'):
                        table.setStyle(self.styles.table_styles[node.getAttribute('style')])
                return table