mirror of
https://github.com/SickGear/SickGear.git
synced 2025-03-15 09:07:43 +00:00
Update bitsoup.py
they've reorganized columns
This commit is contained in:
parent
701842ba71
commit
63dbe9e522
1 changed files with 2 additions and 2 deletions
|
@ -197,8 +197,8 @@ class BitSoupProvider(generic.TorrentProvider):
|
||||||
try:
|
try:
|
||||||
title = link.getText()
|
title = link.getText()
|
||||||
id = int(id)
|
id = int(id)
|
||||||
seeders = int(cells[9].getText())
|
seeders = int(cells[10].getText())
|
||||||
leechers = int(cells[10].getText())
|
leechers = int(cells[11].getText())
|
||||||
except (AttributeError, TypeError):
|
except (AttributeError, TypeError):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue