From a291ae0c8f1d60976fb0cff59cf972dc9fdf6a59 Mon Sep 17 00:00:00 2001 From: swordfish6975 Date: Sun, 10 Feb 2019 16:04:24 +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 c02270a..d4e2acd 100644 --- a/couchpotato/core/media/_base/providers/torrent/iptorrents.py +++ b/couchpotato/core/media/_base/providers/torrent/iptorrents.py @@ -62,7 +62,7 @@ class Base(TorrentProvider): final_page_link = next_link.previous_sibling.previous_sibling pages = int(final_page_link.string) - result_table = html.select('table#torrents') + result_table = html.find_all('table', id="torrents") log.debug('result_table: %s', result_table) result_table = result_table[0] if not result_table or 'nothing found!' in data.lower():