mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-01 00:43:37 +00: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
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue