Private GIT

Skip to content
Snippets Groups Projects
Commit e49627fc authored by miigotu's avatar miigotu
Browse files

Merge pull request #71 from adaur/develop

Fix Libertalia provider
parents 4a75fd70 c415213c
No related branches found
No related tags found
No related merge requests found
......@@ -99,7 +99,7 @@ class LibertaliaProvider(generic.TorrentProvider):
with BS4Parser(data, features=["html5lib", "permissive"]) as html:
resultsTable = html.find("table", {"class" : "torrent_table"})
if resultsTable:
rows = resultsTable.findAll("tr", {"class" : re.compile("torrent_row(.*)?")})
rows = resultsTable.findAll("tr", {"class" : re.compile("torrent_row.*")})
for row in rows:
# bypass first row because title only
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment