mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-03 23:18:40 +00:00
Make PluginManager start before TorrentManager.
This commit is contained in:
parent
28f0a0b9f8
commit
8c44dd40fa
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue