Browse Source

Merge pull request #7137 from RedsGT/patch-1

Fix BeautifulSoup find_all parsing
pull/7145/head
Ruud Burger 9 years ago
committed by GitHub
parent
commit
1e15208a23
  1. 2
      couchpotato/core/media/_base/providers/torrent/bithdtv.py

2
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': ''})

Loading…
Cancel
Save