[py-svn] r34920 - py/dist/py/apigen/source

fijal at codespeak.net fijal at codespeak.net
Thu Nov 23 21:55:30 CET 2006


Author: fijal
Date: Thu Nov 23 21:55:28 2006
New Revision: 34920

Modified:
   py/dist/py/apigen/source/html.py
Log:
Make not <td> appear inside other <td>


Modified: py/dist/py/apigen/source/html.py
==============================================================================
--- py/dist/py/apigen/source/html.py	(original)
+++ py/dist/py/apigen/source/html.py	Thu Nov 23 21:55:28 2006
@@ -48,7 +48,7 @@
     
     enchanter = HtmlEnchanter(mod)
     rows = [enchanter.enchant_row(num + 1, row[:-1]) for num, row in enumerate(lines)]
-    html_rows = [html.tr(html.td(html.pre(num + 1), html.td(html.pre(*i)))) \
+    html_rows = [html.tr(html.td(html.pre(num + 1)), html.td(html.pre(*i))) \
         for num, i in enumerate(rows)]
     
     output = html.table(


More information about the py-svn mailing list