Skip to content

Commit

Permalink
Merge pull request #299 from jayaddison/issue-298/html-footer-templat…
Browse files Browse the repository at this point in the history
…e-fixup

Fixup: add missing call operator in template
  • Loading branch information
bskinn authored Oct 2, 2024
2 parents 7e76998 + e54ecb3 commit ff9151a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion doc/source/_templates/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

{%-block extrafooter %}

{{ super }}
{{ super() }}

<br /><br />

Expand Down

0 comments on commit ff9151a

Please sign in to comment.