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
Prev Previous commit
Next Next commit
regex fix
  • Loading branch information
AndroKev committed Mar 14, 2018
commit e02ed3728c9f0aaf96a2988d6f5e14c6a07f324c
2 changes: 1 addition & 1 deletion youtube_dl/extractor/tvnow.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def _real_extract(self, url):


class TVNowListChannelIE(TVNowBaseIE):
_VALID_URL = r'(?P<base_url>https?://(?:www\.)?tvnow\.(?:de|at|ch)/(?:rtl(?:2|plus)?|nitro|superrtl|ntv|vox)/(?P<show_id>[^/]+))'
_VALID_URL = r'(?P<base_url>https?://(?:www\.)?tvnow\.(?:de|at|ch)/(?:rtl(?:2|plus)?|nitro|superrtl|ntv|vox)/(?P<show_id>[^/]+)$)'
Copy link
Collaborator

Choose a reason for hiding this comment

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

I've already pointed out: no trailing $. Override suitable instead.


_SHOW_FIELDS = ('id', 'title', )
_SEASON_FIELDS = ('id', 'headline', 'seoheadline', )
Expand Down