From ab5d9e29d6bead5c9ccfebc8bb4df20e5c80025d Mon Sep 17 00:00:00 2001 From: Ruud Date: Sat, 14 Jan 2012 11:46:26 +0100 Subject: [PATCH] Add year to x264 provider search --- couchpotato/core/providers/nzb/x264/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/providers/nzb/x264/main.py b/couchpotato/core/providers/nzb/x264/main.py index 9224acc9..c4d80531 100644 --- a/couchpotato/core/providers/nzb/x264/main.py +++ b/couchpotato/core/providers/nzb/x264/main.py @@ -23,7 +23,7 @@ class X264(NZBProvider): if self.isDisabled() or not self.isAvailable(self.urls['search']) or not quality.get('hd', False): return results - q = '%s %s' % (movie['library']['titles'][0]['title'], quality.get('identifier')) + q = '%s %s %s' % (movie['library']['titles'][0]['title'], movie['library']['year'], quality.get('identifier')) url = self.urls['search'] % quote_plus(q) cache_key = 'x264.%s' % q