summaryrefslogtreecommitdiffstats
path: root/pyload/threads
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-11-17 20:46:52 +0100
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-11-17 20:46:52 +0100
commit07f061bf96992a447ad535460ad6053d15a86888 (patch)
treea3137c54187aaf93289b9016ca0f3b2598a8b1db /pyload/threads
parentMerge pull request #400 from vuolter/m/c_logging (diff)
downloadpyload-07f061bf96992a447ad535460ad6053d15a86888.tar.xz
adapted multihoster to new plugin manager
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 f39ac41f2..62e309020 100644
--- a/pyload/threads/InfoThread.py
+++ b/pyload/threads/InfoThread.py
@@ -57,7 +57,7 @@ class InfoThread(DecrypterThread):
for pluginname, urls in plugins.iteritems():
plugin = self.m.core.pluginManager.loadModule("hoster", pluginname)
- klass = self.m.core.pluginManager.getPluginClass(pluginname)
+ klass = self.m.core.pluginManager.getPluginClass("hoster", pluginname, overwrite=False)
if has_method(klass, "getInfo"):
self.fetchForPlugin(klass, urls, cb)
# TODO: this branch can be removed in the future