diff options
author | 2012-01-04 17:23:13 +0100 | |
---|---|---|
committer | 2012-01-04 17:23:13 +0100 | |
commit | 18466eb7f8f3cd4ca9a0824074d2ff454939fce6 (patch) | |
tree | f22c67aab99d500581e73d5ad555d2d70c2a2bd2 /pyLoadCore.py | |
parent | fs_encode fix (diff) | |
download | pyload-18466eb7f8f3cd4ca9a0824074d2ff454939fce6.tar.xz |
some fixes
Diffstat (limited to 'pyLoadCore.py')
-rwxr-xr-x | pyLoadCore.py | 6 |
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()) |