Register 'Core' with deluge.component.
This commit is contained in:
parent
75a797cabe
commit
c679d6b2cf
|
@ -98,10 +98,11 @@ DEFAULT_PREFS = {
|
||||||
|
|
||||||
class Core(
|
class Core(
|
||||||
ThreadingMixIn,
|
ThreadingMixIn,
|
||||||
SimpleXMLRPCServer.SimpleXMLRPCServer):
|
SimpleXMLRPCServer.SimpleXMLRPCServer,
|
||||||
|
component.Component):
|
||||||
def __init__(self, port):
|
def __init__(self, port):
|
||||||
log.debug("Core init..")
|
log.debug("Core init..")
|
||||||
|
component.Component.__init__(self, "Core")
|
||||||
self.client_address = None
|
self.client_address = None
|
||||||
|
|
||||||
# Get config
|
# Get config
|
||||||
|
|
Loading…
Reference in New Issue