taler-docs

Documentation for GNU Taler components, APIs and protocols
Log | Files | Refs | README | LICENSE

commit d803410f63f6957727835ee8f2d9fd98a6c9a3e8
parent 3a5c4f11443fd1dae389d606ee1ad9c782e6a7d0
Author: Florian Dold <florian.dold@gmail.com>
Date:   Mon, 18 Jan 2016 01:11:44 +0100

py2 support again

Diffstat:
Mexts/tsref.py | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/exts/tsref.py b/exts/tsref.py @@ -21,7 +21,7 @@ _escape_html_table = { class LinkingHtmlFormatter(HtmlFormatter): def __init__(self, **kwargs): - super().__init__(**kwargs) + super(LinkingHtmlFormatter, self).__init__(**kwargs) self._builder = kwargs['_builder'] def _fmt(self, value, tok): @@ -88,7 +88,7 @@ class MyHtmlBuilder(StandaloneHTMLBuilder): def write_doc(self, docname, doctree): self._current_docname = docname - super().write_doc(docname, doctree) + super(MyHtmlBuilder, self).write_doc(docname, doctree) def get_annotation(tok, key):