Browse Source

Don't break but try next release

pull/477/merge
Ruud 13 years ago
parent
commit
97940b3f67
  1. 5
      couchpotato/core/plugins/searcher/main.py

5
couchpotato/core/plugins/searcher/main.py

@ -159,8 +159,9 @@ class Searcher(Plugin):
continue continue
if nzb['score'] <= 0: if nzb['score'] <= 0:
log.debug('No more releases with score higher than 0') log.info('Ignored, score to low: %s', nzb['name'])
break continue
downloaded = self.download(data = nzb, movie = movie) downloaded = self.download(data = nzb, movie = movie)
if downloaded is True: if downloaded is True:
ret = True ret = True

Loading…
Cancel
Save