From 5530fbf79207c55f048859f18f085ed2314baf4c Mon Sep 17 00:00:00 2001 From: clinton-hall Date: Tue, 4 Dec 2012 19:22:50 -0800 Subject: [PATCH] Remove ignore words. URL too long Most people are experiencing 401 errors with nzbclub --- couchpotato/core/providers/nzb/nzbclub/main.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/couchpotato/core/providers/nzb/nzbclub/main.py b/couchpotato/core/providers/nzb/nzbclub/main.py index 47d6c85..9f85348 100644 --- a/couchpotato/core/providers/nzb/nzbclub/main.py +++ b/couchpotato/core/providers/nzb/nzbclub/main.py @@ -29,8 +29,6 @@ class NZBClub(NZBProvider, RSS): return results q = '"%s %s" %s' % (simplifyString(getTitle(movie['library'])), movie['library']['year'], quality.get('identifier')) - for ignored in Env.setting('ignored_words', 'searcher').split(','): - q = '%s -%s' % (q, ignored.strip()) params = { 'q': q,