summaryrefslogtreecommitdiffstats
path: root/module
diff options
context:
space:
mode:
authorGravatar Wieland Hoffmann <themineo@gmail.com> 2012-01-05 20:39:46 +0100
committerGravatar Wieland Hoffmann <themineo@gmail.com> 2012-01-05 20:39:46 +0100
commitce6229a82f6952d5ae1e57a08cc6ed9fdef3c760 (patch)
tree2cd8219fe21930df727f79c713b60fc5ec707927 /module
parentXMPPInterface: handle subscribe requests (diff)
downloadpyload-ce6229a82f6952d5ae1e57a08cc6ed9fdef3c760.tar.xz
Unbreak Ev0InFetcher
Diffstat (limited to 'module')
-rw-r--r--module/plugins/hooks/Ev0InFetcher.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hooks/Ev0InFetcher.py b/module/plugins/hooks/Ev0InFetcher.py
index 5941cf38c..0cd3f3226 100644
--- a/module/plugins/hooks/Ev0InFetcher.py
+++ b/module/plugins/hooks/Ev0InFetcher.py
@@ -40,7 +40,7 @@ class Ev0InFetcher(Hook):
results = self.core.pluginManager.parseUrls(links)
sortedLinks = {}
- for url, hoster in results:
+ for url, hoster in results[0]:
if hoster not in sortedLinks:
sortedLinks[hoster] = []
sortedLinks[hoster].append(url)