From 095272673d437cbcf0abe7f9cf6db38371126a6c Mon Sep 17 00:00:00 2001 From: Alexandre Beloin Date: Sat, 31 Jan 2015 11:20:27 -0500 Subject: [PATCH] Fix IPTorrents url. Ref bad commit: coolius/SickRage@bef4461 --- sickbeard/providers/iptorrents.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sickbeard/providers/iptorrents.py b/sickbeard/providers/iptorrents.py index bc45600b..0d2d0d6b 100644 --- a/sickbeard/providers/iptorrents.py +++ b/sickbeard/providers/iptorrents.py @@ -54,9 +54,9 @@ class IPTorrentsProvider(generic.TorrentProvider): self.cache = IPTorrentsCache(self) - self.urls = {'base_url': 'https://www.iptorrents.eu', - 'login': 'https://www.iptorrents.eu/torrents/', - 'search': 'https://www.iptorrents.eu/torrents/?%s%s&q=%s&qf=ti', + self.urls = {'base_url': 'https://iptorrents.eu', + 'login': 'https://iptorrents.eu/torrents/', + 'search': 'https://iptorrents.eu/torrents/?%s%s&q=%s&qf=ti', } self.url = self.urls['base_url']