Skip to content
Snippets Groups Projects
Commit c797970f authored by Lars Pieschel's avatar Lars Pieschel
Browse files

Fixed table not having a closing tag.

parent 5fd715c3
No related branches found
No related tags found
No related merge requests found
......@@ -85,7 +85,7 @@ def html_table(row_iter):
res += html_table_row(next(row_iter), True)
for row in row_iter:
res += html_table_row(row)
return res
return res + "</table>"
def html_table_row(row, header=False):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment