summaryrefslogtreecommitdiffstats
path: root/pyload/threads
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-11-17 14:05:40 +0100
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-11-17 14:05:52 +0100
commitc1e580ec06b9065bc63ebf987d5306c03da237e0 (patch)
tree079f72ccc9d3f54ba14c7bf19e57ec67b813f6c3 /pyload/threads
parentMerge pull request #365 from vuolter/m/timestamp (diff)
downloadpyload-c1e580ec06b9065bc63ebf987d5306c03da237e0.tar.xz
refactored pluginManager
Diffstat (limited to 'pyload/threads')
-rw-r--r--pyload/threads/InfoThread.py2
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)