Browse Source

Merge pull request #600 from JackDandy/feature/FixMTVProvUrl

Fix MTV provider download URL.
pull/601/head
JackDandy 9 years ago
parent
commit
dd1989a87e
  1. 2
      sickbeard/providers/morethan.py

2
sickbeard/providers/morethan.py

@ -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…
Cancel
Save