From a74b12f5191ed4ac96fba470bfc05cd8a94a8640 Mon Sep 17 00:00:00 2001 From: echel0n Date: Fri, 25 Apr 2014 04:43:24 -0700 Subject: [PATCH] Fixes issues with RSS feeds not being parsed correctly. --- sickbeard/providers/rsstorrent.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/sickbeard/providers/rsstorrent.py b/sickbeard/providers/rsstorrent.py index 89ce9ea1..7afa51f8 100644 --- a/sickbeard/providers/rsstorrent.py +++ b/sickbeard/providers/rsstorrent.py @@ -125,9 +125,7 @@ class TorrentRssProvider(generic.TorrentProvider): return (False, 'Error when trying to load RSS: ' + ex(e)) def getURL(self, url, post_data=None, headers=None): - try: - url = urljoin(url, urlparse(url).path.replace('//', '/')) response = requests.get(url, verify=False) except (requests.exceptions.ConnectionError, requests.exceptions.HTTPError), e: logger.log(u"Error loading " + self.name + " URL: " + ex(e), logger.ERROR)