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' name = 'zundler'
epilog = "" epilog = ""
def __init__(self, app): def __init__(self, app, env):
super().__init__(app) super().__init__(app, env)
self.epilog = ( self.epilog = (
'Your self-contained HTML file is now in %s.' % 'Your self-contained HTML file is now in %s.' %
relpath(self.app.original_outdir) relpath(self.app.original_outdir)