diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-11-17 14:05:40 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-11-17 14:05:52 +0100 |
commit | c1e580ec06b9065bc63ebf987d5306c03da237e0 (patch) | |
tree | 079f72ccc9d3f54ba14c7bf19e57ec67b813f6c3 /pyload/threads | |
parent | Merge pull request #365 from vuolter/m/timestamp (diff) | |
download | pyload-c1e580ec06b9065bc63ebf987d5306c03da237e0.tar.xz |
refactored pluginManager
Diffstat (limited to 'pyload/threads')
-rw-r--r-- | pyload/threads/InfoThread.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/threads/InfoThread.py b/pyload/threads/InfoThread.py index f516d2cca..f39ac41f2 100644 --- a/pyload/threads/InfoThread.py +++ b/pyload/threads/InfoThread.py @@ -56,7 +56,7 @@ class InfoThread(DecrypterThread): cb = self.updateDB if self.pid > 1 else self.updateResult for pluginname, urls in plugins.iteritems(): - plugin = self.m.core.pluginManager.getPluginModule(pluginname) + plugin = self.m.core.pluginManager.loadModule("hoster", pluginname) klass = self.m.core.pluginManager.getPluginClass(pluginname) if has_method(klass, "getInfo"): self.fetchForPlugin(klass, urls, cb) |