diff --git a/src/hdmf/common/table.py b/src/hdmf/common/table.py index e11f4c4c8..767bf4f2e 100644 --- a/src/hdmf/common/table.py +++ b/src/hdmf/common/table.py @@ -1211,7 +1211,7 @@ def generate_html_repr(self, level: int = 0, access_code: str = "", nrows: int = inside = f"{self[:min(nrows, len(self))].to_html()}" if len(self) == nrows + 1: - inside += f"

... and 1 more row.

" + inside += "

... and 1 more row.

" elif len(self) > nrows + 1: inside += f"

... and {len(self) - nrows} more rows.

"