Skip to content

Commit 1ef10eb

Browse files
committed
fixing html bug'
1 parent 0047852 commit 1ef10eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datascience/tables.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1861,8 +1861,8 @@ def as_html(self, max_rows=0):
18611861
(3, ' '.join('<td>' + fmt(v, label=False) + '</td>' for
18621862
v, fmt in zip(row, fmts))),
18631863
(2, '</tr>'),
1864-
(1, '</tbody>'),
18651864
]
1865+
lines.append((1, '</tbody>'))
18661866
lines.append((0, '</table>'))
18671867
if omitted:
18681868
lines.append((0, '<p>... ({} rows omitted)</p>'.format(omitted)))

0 commit comments

Comments
 (0)