Browse Source

Merge pull request #5911 from pkoutsias/MTV_fix

Fix for MTV
pull/5959/head
Ruud Burger 9 years ago
parent
commit
9ebf46435e
  1. 2
      couchpotato/core/media/_base/providers/torrent/morethantv.py

2
couchpotato/core/media/_base/providers/torrent/morethantv.py

@ -42,7 +42,7 @@ class Base(TorrentProvider):
for result in entries:
link = result.find('a', attrs = {'dir': 'ltr'})
url = result.find('a', attrs = {'title': 'Download'})
url = result.find('span', attrs = {'title': 'Download'}).parent
tds = result.find_all('td')
size = tds[5].contents[0].strip('\n ')

Loading…
Cancel
Save