diff --git a/couchpotato/core/media/_base/providers/torrent/iptorrents.py b/couchpotato/core/media/_base/providers/torrent/iptorrents.py index b7a6631..c02270a 100644 --- a/couchpotato/core/media/_base/providers/torrent/iptorrents.py +++ b/couchpotato/core/media/_base/providers/torrent/iptorrents.py @@ -65,7 +65,7 @@ class Base(TorrentProvider): result_table = html.select('table#torrents') log.debug('result_table: %s', result_table) result_table = result_table[0] - if not result_table or 'nothing found!' in data.lower(): + if not result_table or 'nothing found!' in data.lower(): return entries = result_table.find_all('tr')