From f4c38c9b1de651e3dc4c7f55c535e52ad4535cec Mon Sep 17 00:00:00 2001 From: Ruud Date: Sat, 4 Jun 2011 21:37:49 +0200 Subject: [PATCH] Always return list with backup_id --- couchpotato/core/providers/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/providers/base.py b/couchpotato/core/providers/base.py index 8a1fe32..d7941af 100644 --- a/couchpotato/core/providers/base.py +++ b/couchpotato/core/providers/base.py @@ -118,7 +118,7 @@ class YarrProvider(Provider): if identifier in qualities: return ids - return False + return [self.cat_backup_id] def found(self, new): log.info('Found: score(%(score)s): %(name)s' % new)