From 18012c5fffd35e1e906ef4ce0cbad1ba4e1fc5da Mon Sep 17 00:00:00 2001 From: swordfish6975 Date: Sun, 10 Feb 2019 16:01:16 +1000 Subject: [PATCH] Update iptorrents.py --- couchpotato/core/media/_base/providers/torrent/iptorrents.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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')