mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-17 23:05:11 -05:00
Possible Fix for Alpha Ratio
Possible Fix for alpha ratio per issue #654
This commit is contained in:
parent
226a7148d2
commit
685fffbc25
@ -183,17 +183,15 @@ class AlphaRatioProvider(generic.TorrentProvider):
|
||||
|
||||
for result in torrent_rows[1:]:
|
||||
cells = result.find_all('td')
|
||||
|
||||
link = cells[1].find('a', attrs={'title': 'Download'})
|
||||
full_id = link['href'].replace('torrents.php?action=download&id=', '')
|
||||
torrent_id = full_id.split("&")[0]
|
||||
link = result.find('a', attrs = {'dir': 'ltr'})
|
||||
url = result.find('a', attrs = {'title': 'Download'})
|
||||
|
||||
try:
|
||||
title = cells[1].find('a', attrs={'title': 'View Auto Torrent'}).contents[0]
|
||||
download_url = self.urls['download'] % (link['href'])
|
||||
id = torrent_id
|
||||
seeders = cells[6].contents[0]
|
||||
leechers = cells[7].contents[0]
|
||||
title = link.contents[0]
|
||||
download_url = self.urls['download'] % (url['href'])
|
||||
id = link['href'].replace('torrents.php?id=', '').split('&')[0]
|
||||
seeders = cells[len(cells)-2].string
|
||||
leechers = cells[len(cells)-1].string
|
||||
except (AttributeError, TypeError):
|
||||
continue
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user