Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Tvnow] bugfix & download whole serie #15837

Closed
wants to merge 11 commits into from
Next Next commit
[tvnow] fix download-archive id should be string
  • Loading branch information
AndroKev committed Mar 12, 2018
commit e34e398a9cc96da692e3b40df83e0854fb8d27c3
2 changes: 1 addition & 1 deletion youtube_dl/extractor/tvnow.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def _real_extract(self, url):
if not seo_url:
continue
entries.append(self.url_result(
base_url + seo_url + '/player', 'TVNow', info.get('id')))
base_url + seo_url + '/player', 'TVNow', compat_str(info.get('id'))))
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Won't work on None.


return self.playlist_result(
entries, compat_str(season.get('id') or season_id), title)