diff --git a/CHANGELOG.md b/CHANGELOG.md index b6f7c2f..c20092d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,17 @@ and this project follows an extension of fourth number represents an administrative maintenance release with no code changes. +### Unreleased + +#### Fixed + + * The `super` keyword used in a statement in the HTML footer + template was missing parentheses to perform a method call; this + caused the template rendering to emit a Python string describing + the parent template object, instead of rendering the parent + template as intended. + ([#298](https://github.com/bskinn/sphobjinv/issues/298)) + ### [2.3.1.1] - 2024-05-21 #### Tests diff --git a/doc/source/_templates/footer.html b/doc/source/_templates/footer.html index 1ee7734..e519d56 100644 --- a/doc/source/_templates/footer.html +++ b/doc/source/_templates/footer.html @@ -2,7 +2,7 @@ {%-block extrafooter %} -{{ super }} +{{ super() }}