Fix IPTorrents url.

Ref bad commit: coolius/SickRage@bef4461
This commit is contained in:
Alexandre Beloin 2015-01-31 11:20:27 -05:00
parent c62d8f2c79
commit 095272673d
1 changed files with 3 additions and 3 deletions

View File

@ -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']