Make PluginManager start before TorrentManager.
This commit is contained in:
parent
28f0a0b9f8
commit
8c44dd40fa
|
@ -91,7 +91,7 @@ class TorrentManager(component.Component):
|
||||||
session for use on restart."""
|
session for use on restart."""
|
||||||
|
|
||||||
def __init__(self, session, alerts):
|
def __init__(self, session, alerts):
|
||||||
component.Component.__init__(self, "TorrentManager")
|
component.Component.__init__(self, "TorrentManager", depend=["PluginManager"])
|
||||||
log.debug("TorrentManager init..")
|
log.debug("TorrentManager init..")
|
||||||
# Set the libtorrent session
|
# Set the libtorrent session
|
||||||
self.session = session
|
self.session = session
|
||||||
|
|
Loading…
Reference in New Issue