Merge pull request #752 from adam111316/torrentbytes_fix

Fix for torrentbytes provider where torrentid is <6 characters long
This commit is contained in:
echel0n 2014-08-25 22:59:39 -07:00
commit 8f43c58c9e

View file

@ -184,7 +184,7 @@ class TorrentBytesProvider(generic.TorrentProvider):
link = cells[1].find('a', attrs={'class': 'index'})
full_id = link['href'].replace('details.php?id=', '')
torrent_id = full_id[:6]
torrent_id = full_id.split("&")[0]
try:
if link.has_key('title'):