diff --git a/couchpotato/core/providers/torrent/iptorrents/main.py b/couchpotato/core/providers/torrent/iptorrents/main.py index b668747..d22f4bd 100644 --- a/couchpotato/core/providers/torrent/iptorrents/main.py +++ b/couchpotato/core/providers/torrent/iptorrents/main.py @@ -59,7 +59,11 @@ class IPTorrents(TorrentProvider): for result in entries[1:]: - torrent = result.find_all('td')[1].find('a') + torrent = result.find_all('td') + if len(torrent) <= 1: + break + + torrent = torrent[1].find('a') torrent_id = torrent['href'].replace('/details.php?id=', '') torrent_name = torrent.string