Fix super() call in uPnPThread
This commit is contained in:
parent
881c80f20a
commit
ffa12acad5
|
@ -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:
|
||||
|
|
Reference in New Issue
Block a user