diff options
author | Wieland Hoffmann <themineo@gmail.com> | 2012-01-05 20:39:46 +0100 |
---|---|---|
committer | Wieland Hoffmann <themineo@gmail.com> | 2012-01-05 20:39:46 +0100 |
commit | ce6229a82f6952d5ae1e57a08cc6ed9fdef3c760 (patch) | |
tree | 2cd8219fe21930df727f79c713b60fc5ec707927 /module | |
parent | XMPPInterface: handle subscribe requests (diff) | |
download | pyload-ce6229a82f6952d5ae1e57a08cc6ed9fdef3c760.tar.xz |
Unbreak Ev0InFetcher
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/hooks/Ev0InFetcher.py | 2 |
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) |