Browse Source

Remove special URL handling for nzbclub indexer, no longer needed.

pull/178/head
shypike 11 years ago
parent
commit
4b6c469831
  1. 4
      sabnzbd/rss.py

4
sabnzbd/rss.py

@ -396,10 +396,6 @@ 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')
newlinks.append(link)

Loading…
Cancel
Save