From 109c999186492b8f51cfeb91a4e7ba610350f641 Mon Sep 17 00:00:00 2001 From: swordfish6975 Date: Sun, 10 Feb 2019 16:26:03 +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 188f93d..10ef564 100644 --- a/couchpotato/core/media/_base/providers/torrent/iptorrents.py +++ b/couchpotato/core/media/_base/providers/torrent/iptorrents.py @@ -52,7 +52,7 @@ class Base(TorrentProvider): data = self.getHTMLData(base_url % (freeleech, current_page), headers = self.getRequestHeaders()) if data: - html = BeautifulSoup(data, parser="html.parser") + html = BeautifulSoup(data) try: page_nav = html.find('span', attrs = {'class': 'page_nav'})