Private GIT

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

Merge pull request #1959 from fernandog/hdt_fix

Fix HDT removing first letter of the file
parents 3565ec70 d61069ae
Branches
Tags
No related merge requests found
......@@ -218,7 +218,7 @@ class HDTorrentsProvider(generic.TorrentProvider):
continue
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']
download_url = self.urls['home'] % entries[15].find('a')['href']
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