diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-11-05 03:24:42 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-11-05 03:24:42 +0700 |
commit | de328af36264c35a1af6037b1a39f42d5832887a (patch) | |
tree | a3ce2023296ebbf60c7422e5eeee6211fcdd0865 /youtube_dl/extractor/toutv.py | |
parent | b30e4c275431124453ba4bc67b99d05bbc7ae8b4 (diff) |
[toutv] Relax _VALID_URL (closes #11121)
Diffstat (limited to 'youtube_dl/extractor/toutv.py')
-rw-r--r-- | youtube_dl/extractor/toutv.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/youtube_dl/extractor/toutv.py b/youtube_dl/extractor/toutv.py index d2d5c1171..573f2ff6b 100644 --- a/youtube_dl/extractor/toutv.py +++ b/youtube_dl/extractor/toutv.py @@ -15,11 +15,11 @@ from ..utils import ( class TouTvIE(InfoExtractor): _NETRC_MACHINE = 'toutv' IE_NAME = 'tou.tv' - _VALID_URL = r'https?://ici\.tou\.tv/(?P<id>[a-zA-Z0-9_-]+/S[0-9]+E[0-9]+)' + _VALID_URL = r'https?://ici\.tou\.tv/(?P<id>[a-zA-Z0-9_-]+(?:/S[0-9]+E[0-9]+)?)' _access_token = None _claims = None - _TEST = { + _TESTS = [{ 'url': 'http://ici.tou.tv/garfield-tout-court/S2015E17', 'info_dict': { 'id': '122017', @@ -33,7 +33,10 @@ class TouTvIE(InfoExtractor): 'skip_download': True, }, 'skip': '404 Not Found', - } + }, { + 'url': 'http://ici.tou.tv/hackers', + 'only_matching': True, + }] def _real_initialize(self): email, password = self._get_login_info() |