1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-06 12:41:29 +00:00

Fix calls to super from old-style classes.

This commit is contained in:
dmiller
2019-12-20 19:36:48 +00:00
parent ccdb816552
commit 6a971163ac
3 changed files with 3 additions and 3 deletions

View File

@@ -313,7 +313,7 @@ class XMLReader(xml.sax.ContentHandler):
def __init__(self, file=None):
"""
"""
super(XMLReader, self).__init__()
xml.sax.ContentHandler.__init__(self)
self.__text = ""
self.__status = []