From 5b659f85933899b388f634a25502587c6ed4b5b6 Mon Sep 17 00:00:00 2001 From: Christopher Haglund Date: Sat, 26 Nov 2016 23:30:49 +0100 Subject: [PATCH] Add year to search param for torrentpotato --- couchpotato/core/media/movie/providers/torrent/torrentpotato.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/media/movie/providers/torrent/torrentpotato.py b/couchpotato/core/media/movie/providers/torrent/torrentpotato.py index e22f4e7..9bc6b85 100644 --- a/couchpotato/core/media/movie/providers/torrent/torrentpotato.py +++ b/couchpotato/core/media/movie/providers/torrent/torrentpotato.py @@ -17,6 +17,6 @@ class TorrentPotato(MovieProvider, Base): 'user': host['name'], 'passkey': host['pass_key'], 'imdbid': getIdentifier(media), - 'search' : getTitle(media), + 'search' : getTitle(media) + ' ' + str(media['info']['year']), }) return '%s?%s' % (host['host'], arguments)