diff --git a/couchpotato/core/media/_base/providers/torrent/bithdtv.py b/couchpotato/core/media/_base/providers/torrent/bithdtv.py index 7aa0157..69c030e 100644 --- a/couchpotato/core/media/_base/providers/torrent/bithdtv.py +++ b/couchpotato/core/media/_base/providers/torrent/bithdtv.py @@ -39,7 +39,7 @@ class Base(TorrentProvider): if '## SELECT COUNT(' in split_data[0]: data = split_data[2] - html = BeautifulSoup(data) + html = BeautifulSoup(data, 'html.parser') try: result_table = html.find('table', attrs = {'width': '750', 'class': ''})