From: Daniel Lenski Date: Tue, 10 Aug 2021 23:31:22 +0000 (+0000) Subject: Use more idiomatic super().__init__() in html.py X-Git-Tag: v8.20~70^2 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=1b3ffa6fb8f77b3924f474e675c3fe9ac16901fb;p=users%2Fdwmw2%2Fopenconnect.git Use more idiomatic super().__init__() in html.py Signed-off-by: Daniel Lenski --- diff --git a/www/html.py b/www/html.py index b7cd1c13..cb225b63 100755 --- a/www/html.py +++ b/www/html.py @@ -80,7 +80,7 @@ def placeMenu(topic, link, mode): class docHandler(xml.sax.ContentHandler): def __init__(self): - xml.sax.ContentHandler.__init__(self) + super().__init__() self.content = "" return