mirror of
https://github.com/moparisthebest/SickRage
synced 2024-12-13 03:22:22 -05:00
Update bitsoup.py - new table format
Table that lists torrents has changed, and the download link is on third column
This commit is contained in:
parent
36958bf1c2
commit
ce52dc8333
@ -188,7 +188,7 @@ class BitSoupProvider(generic.TorrentProvider):
|
||||
cells = result.find_all('td')
|
||||
|
||||
link = cells[1].find('a')
|
||||
download_url = self.urls['download'] % cells[3].find('a')['href']
|
||||
download_url = self.urls['download'] % cells[2].find('a')['href']
|
||||
|
||||
id = link['href']
|
||||
id = id.replace('details.php?id=','')
|
||||
|
Loading…
Reference in New Issue
Block a user