diff options
author | mkaay <mkaay@mkaay.de> | 2011-02-13 15:06:03 +0100 |
---|---|---|
committer | mkaay <mkaay@mkaay.de> | 2011-02-13 15:06:03 +0100 |
commit | 908c28bab89525250172a4013667319942846065 (patch) | |
tree | 73b85517ae12f8be4bc2071409136f181907795d /module/plugins | |
parent | cleanup (diff) | |
download | pyload-908c28bab89525250172a4013667319942846065.tar.xz |
fixes + improvements
Diffstat (limited to 'module/plugins')
-rw-r--r-- | module/plugins/hooks/Ev0InFetcher.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/module/plugins/hooks/Ev0InFetcher.py b/module/plugins/hooks/Ev0InFetcher.py index f3703ea04..f573d28a3 100644 --- a/module/plugins/hooks/Ev0InFetcher.py +++ b/module/plugins/hooks/Ev0InFetcher.py @@ -79,7 +79,8 @@ class Ev0InFetcher(Hook, PluginStorage): self.setStorage("show_%s_lastfound" % show, int(mktime(item.date_parsed))) found = True if not found: - self.core.log.debug("Ev0InFetcher: no new episodes found") + #self.core.log.debug("Ev0InFetcher: no new episodes found") + pass for show, lastfound in self.getStorage().iteritems(): if int(lastfound) > 0 and int(lastfound) + (3600*24*30) < int(time()): |