Private GIT

Skip to content
Snippets Groups Projects
Commit d61069ae authored by Fernando's avatar Fernando
Browse files

Fix HDT removing first letter of the file

parent 3565ec70
Branches
Tags
No related merge requests found
...@@ -218,7 +218,7 @@ class HDTorrentsProvider(generic.TorrentProvider): ...@@ -218,7 +218,7 @@ class HDTorrentsProvider(generic.TorrentProvider):
continue continue
try: try:
title = entries[22].find('a')['title'].strip('History - ').replace('Blu-ray', 'bd50') title = entries[22].find('a')['title'].replace('History - ','').replace('Blu-ray', 'bd50')
url = self.urls['home'] % entries[15].find('a')['href'] url = self.urls['home'] % entries[15].find('a')['href']
download_url = self.urls['home'] % entries[15].find('a')['href'] download_url = self.urls['home'] % entries[15].find('a')['href']
id = entries[23].find('div')['id'] id = entries[23].find('div')['id']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment