mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-05 17:43:37 +00:00
Merge pull request #600 from JackDandy/feature/FixMTVProvUrl
Fix MTV provider download URL.
This commit is contained in:
commit
dd1989a87e
1 changed files with 1 additions and 1 deletions
|
@ -96,7 +96,7 @@ class MoreThanProvider(generic.TorrentProvider):
|
|||
title)
|
||||
|
||||
link = str(tr.find('a', title=rc['get'])['href']).replace('&', '&').lstrip('/')
|
||||
download_url = self.urls['get'] + link
|
||||
download_url = self.urls['get'] % link
|
||||
except (AttributeError, TypeError, ValueError):
|
||||
continue
|
||||
|
||||
|
|
Loading…
Reference in a new issue