Commit 60803afe authored by Vladimir Kolesnikov's avatar Vladimir Kolesnikov

Misprint fixed in table formatter

parent 46d39aff
...@@ -426,7 +426,7 @@ class table(object): ...@@ -426,7 +426,7 @@ class table(object):
if r == 0: if r == 0:
css = css[:-1] + "border-top:2px solid #6678B1;\"" css = css[:-1] + "border-top:2px solid #6678B1;\""
out.write(" <td%s%s>\n" % (attr, css)) out.write(" <td%s%s>\n" % (attr, css))
if th is not None: if td is not None:
out.write(" %s\n" % htmlEncode(td.text)) out.write(" %s\n" % htmlEncode(td.text))
out.write(" </td>\n") out.write(" </td>\n")
i += colspan i += colspan
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment