From 4b6c469831a99e7ceea74d30ab4331d10e4b7e2e Mon Sep 17 00:00:00 2001 From: shypike Date: Wed, 16 Jul 2014 21:25:42 +0200 Subject: [PATCH] Remove special URL handling for nzbclub indexer, no longer needed. --- sabnzbd/rss.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/sabnzbd/rss.py b/sabnzbd/rss.py index b30345c..84b5830 100644 --- a/sabnzbd/rss.py +++ b/sabnzbd/rss.py @@ -396,11 +396,7 @@ class RSSQueue(object): if link: # Make sure spaces are quoted in the URL - if 'nzbclub.com' in link: - link, path = os.path.split(link.strip()) - link = '%s/%s' % (link, urllib.quote(path)) - else: - link = link.strip().replace(' ','%20') + link = link.strip().replace(' ','%20') newlinks.append(link)