Fix super() call in uPnPThread

This commit is contained in:
Dmitri Bogomolov 2021-06-09 17:19:30 +03:00
parent 881c80f20a
commit ffa12acad5
Signed by untrusted user: g1itch
GPG Key ID: 720A756F18DEED13

View File

@ -206,7 +206,7 @@ class uPnPThread(StoppableThread):
SSDP_ST = "urn:schemas-upnp-org:device:InternetGatewayDevice:1"
def __init__(self):
super(uPnPThread, self).__init__(name="uPnPThread")
super(uPnPThread, self).__init__(None, name="uPnPThread")
try:
self.extPort = BMConfigParser().getint('bitmessagesettings', 'extport')
except: