From 97940b3f6758a42b03826a3aee3c3bdc94da80cf Mon Sep 17 00:00:00 2001 From: Ruud Date: Fri, 29 Jun 2012 14:35:59 +0200 Subject: [PATCH] Don't break but try next release --- couchpotato/core/plugins/searcher/main.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/couchpotato/core/plugins/searcher/main.py b/couchpotato/core/plugins/searcher/main.py index 0f4dacc7..ce8deeb5 100644 --- a/couchpotato/core/plugins/searcher/main.py +++ b/couchpotato/core/plugins/searcher/main.py @@ -159,8 +159,9 @@ class Searcher(Plugin): continue if nzb['score'] <= 0: - log.debug('No more releases with score higher than 0') - break + log.info('Ignored, score to low: %s', nzb['name']) + continue + downloaded = self.download(data = nzb, movie = movie) if downloaded is True: ret = True