Avoid deprecated Builder interface

This commit is contained in:
Adrian Vollmer 2022-10-09 17:35:32 +02:00
parent c60bee22b2
commit 7b5d48c949

View File

@ -15,8 +15,8 @@ class ZundlerBuilder(StandaloneHTMLBuilder):
name = 'zundler'
epilog = ""
def __init__(self, app):
super().__init__(app)
def __init__(self, app, env):
super().__init__(app, env)
self.epilog = (
'Your self-contained HTML file is now in %s.' %
relpath(self.app.original_outdir)