From 1b3ffa6fb8f77b3924f474e675c3fe9ac16901fb Mon Sep 17 00:00:00 2001 From: Daniel Lenski Date: Tue, 10 Aug 2021 23:31:22 +0000 Subject: [PATCH] Use more idiomatic super().__init__() in html.py Signed-off-by: Daniel Lenski --- www/html.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.50.1