diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-07-22 20:26:12 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-07-22 20:26:12 +0200 |
commit | 991bd3d6c1586fb01ddc8207eaee3cfd7a7801f3 (patch) | |
tree | 49bd562d79f1a896c8f871bc728e7eb1924c8d87 /module/plugins | |
parent | show updates on webif (diff) | |
download | pyload-991bd3d6c1586fb01ddc8207eaee3cfd7a7801f3.tar.xz |
closed #367
Diffstat (limited to 'module/plugins')
-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 c7191cd4e..bcd53722c 100644 --- a/module/plugins/hooks/Ev0InFetcher.py +++ b/module/plugins/hooks/Ev0InFetcher.py @@ -75,7 +75,7 @@ class Ev0InFetcher(Hook, PluginStorage): links = self.filterLinks(item['description'].split("<br />")) packagename = item['title'].encode("utf-8") self.core.log.info("Ev0InFetcher: new episode '%s' (matched '%s')" % (packagename, show)) - self.core.api.addPackage(packagename, links, queue=(1 if self.getConfig("queue") else 0)) + self.core.api.addPackage(packagename, links, 1 if self.getConfig("queue") else 0) self.setStorage("show_%s_lastfound" % show, int(mktime(item.date_parsed))) found = True if not found: |