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"
|
SSDP_ST = "urn:schemas-upnp-org:device:InternetGatewayDevice:1"
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super(uPnPThread, self).__init__(name="uPnPThread")
|
super(uPnPThread, self).__init__(None, name="uPnPThread")
|
||||||
try:
|
try:
|
||||||
self.extPort = BMConfigParser().getint('bitmessagesettings', 'extport')
|
self.extPort = BMConfigParser().getint('bitmessagesettings', 'extport')
|
||||||
except:
|
except:
|
||||||
|
|
Reference in New Issue
Block a user