1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-12-12 19:12:26 -05:00

Merge pull request #17 from JackDandy/FixIPT

Fix searching IPTorrentsProvider.
This commit is contained in:
JackDandy 2014-10-17 04:25:50 +01:00
commit 0aa9a992ff

View File

@ -174,6 +174,7 @@ class IPTorrentsProvider(generic.TorrentProvider):
continue continue
try: try:
data = re.sub(r'<button.+?<[\/]button>', '', data, 0, re.IGNORECASE | re.MULTILINE)
with BS4Parser(data, features=["html5lib", "permissive"]) as html: with BS4Parser(data, features=["html5lib", "permissive"]) as html:
if not html: if not html:
logger.log(u"Invalid HTML data: " + str(data), logger.DEBUG) logger.log(u"Invalid HTML data: " + str(data), logger.DEBUG)