Browse Source

Merge pull request #3944 from softcat/develop

Fixed filmstarts.de provider
pull/4201/head
Ruud Burger 11 years ago
parent
commit
2599bac1a4
  1. 4
      couchpotato/core/media/movie/providers/userscript/filmstarts.py

4
couchpotato/core/media/movie/providers/userscript/filmstarts.py

@ -25,6 +25,6 @@ class Filmstarts(UserscriptBase):
name = html.find("meta", {"property":"og:title"})['content']
# Year of production is not available in the meta data, so get it from the table
year = table.find("tr", text="Produktionsjahr").parent.parent.parent.td.text
year = table.find(text="Produktionsjahr").parent.parent.next_sibling.text
return self.search(name, year)
return self.search(name, year)

Loading…
Cancel
Save