Make PluginManager start before TorrentManager.

This commit is contained in:
Andrew Resch 2008-02-26 05:28:29 +00:00
parent 28f0a0b9f8
commit 8c44dd40fa
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ class TorrentManager(component.Component):
session for use on restart."""
def __init__(self, session, alerts):
component.Component.__init__(self, "TorrentManager")
component.Component.__init__(self, "TorrentManager", depend=["PluginManager"])
log.debug("TorrentManager init..")
# Set the libtorrent session
self.session = session