Private GIT

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

Merge pull request #2803 from fbossy/provider-xthor-fix-downloadURL

fix typo : downloadURL should be download_url
parents 5fcc4282 06d16cc1
Branches
Tags
No related merge requests found
...@@ -112,7 +112,7 @@ class XthorProvider(generic.TorrentProvider): ...@@ -112,7 +112,7 @@ class XthorProvider(generic.TorrentProvider):
link = row.find("a",href=re.compile("details.php")) link = row.find("a",href=re.compile("details.php"))
if link: if link:
title = link.text title = link.text
downloadURL = self.url + '/' + row.find("a",href=re.compile("download.php"))['href'] download_url = self.url + '/' + row.find("a",href=re.compile("download.php"))['href']
#FIXME #FIXME
size = -1 size = -1
seeders = 1 seeders = 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment