diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-08-18 19:16:51 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-08-18 19:16:51 +0200 |
commit | 4d3d6105df18608654bbc42594723bd9f767f77d (patch) | |
tree | ba0eda69d71fce60337384a408a29aa927189640 /pyload/threads/InfoThread.py | |
parent | renaming of packages (diff) | |
download | pyload-4d3d6105df18608654bbc42594723bd9f767f77d.tar.xz |
fixed online status fetching
Diffstat (limited to 'pyload/threads/InfoThread.py')
-rw-r--r-- | pyload/threads/InfoThread.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/threads/InfoThread.py b/pyload/threads/InfoThread.py index 6e685cdcf..ff77117c9 100644 --- a/pyload/threads/InfoThread.py +++ b/pyload/threads/InfoThread.py @@ -65,8 +65,8 @@ class InfoThread(BaseThread): self.m.infoResults[self.rid] = {} for pluginname, urls in plugins.iteritems(): - plugin = self.m.core.pluginManager.getPlugin(pluginname, True) - klass = getattr(plugin, pluginname) + plugin = self.m.core.pluginManager.getPluginModule(pluginname) + klass = self.m.core.pluginManager.getPluginClass(pluginname) if has_method(klass, "getInfo"): self.fetchForPlugin(pluginname, plugin, urls, self.updateResult, True) #force to process cache |