summaryrefslogtreecommitdiffstats
path: root/pyLoadCore.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyLoadCore.py')
-rwxr-xr-xpyLoadCore.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pyLoadCore.py b/pyLoadCore.py
index d1a557c43..f8b1ad6e8 100755
--- a/pyLoadCore.py
+++ b/pyLoadCore.py
@@ -362,6 +362,8 @@ class Core(object):
if self.config['ssl']['activated']:
self.check_install("OpenSSL", _("OpenSSL for secure connection"))
+
+ self.eventManager = EventManager(self)
self.setupDB()
if self.deleteLinks:
@@ -387,15 +389,13 @@ class Core(object):
#hell yeah, so many important managers :D
self.pluginManager = PluginManager(self)
- self.eventManager = EventManager(self)
+ self.interActionManager = None #stub
self.accountManager = AccountManager(self)
self.threadManager = ThreadManager(self)
self.captchaManager = CaptchaManager(self)
self.hookManager = HookManager(self)
self.remoteManager = RemoteManager(self)
- self.files.ev = self.eventManager
-
self.js = JsEngine()
self.log.info(_("Downloadtime: %s") % self.api.isTimeDownload())