From fd53ba06370cf53251bc38a54b105b53e2bb7a26 Mon Sep 17 00:00:00 2001 From: Ruud Date: Tue, 25 Dec 2012 17:43:47 +0100 Subject: [PATCH] SceneAccess: Don't add quality to query --- couchpotato/core/providers/torrent/sceneaccess/main.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/couchpotato/core/providers/torrent/sceneaccess/main.py b/couchpotato/core/providers/torrent/sceneaccess/main.py index 3e4384e..242d07f 100644 --- a/couchpotato/core/providers/torrent/sceneaccess/main.py +++ b/couchpotato/core/providers/torrent/sceneaccess/main.py @@ -37,9 +37,8 @@ class SceneAccess(TorrentProvider): self.getCatId(quality['identifier'])[0] ) - q = '%s %s' % (movie['library']['identifier'], quality.get('identifier')) arguments = tryUrlencode({ - 'search': q, + 'search': movie['library']['identifier'], 'method': 1, }) url = "%s&%s" % (url, arguments)