diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-01-30 22:46:53 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-01-30 22:46:53 +0600 |
commit | 2c58674e0ede5d656cb559a18a3b86ffbb21b3a0 (patch) | |
tree | e4e401c705986316d24d0b050f0f246a878eb527 /youtube_dl/extractor | |
parent | ef1269fb07833a06a15d0601e54d58e1678bc06a (diff) |
[nhl] Improve _VALID_URL (#4805)
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/nhl.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/extractor/nhl.py b/youtube_dl/extractor/nhl.py index d3a4fc513..cb279074e 100644 --- a/youtube_dl/extractor/nhl.py +++ b/youtube_dl/extractor/nhl.py @@ -54,7 +54,7 @@ class NHLBaseInfoExtractor(InfoExtractor): class NHLIE(NHLBaseInfoExtractor): IE_NAME = 'nhl.com' - _VALID_URL = r'https?://video(?P<team>\.[^.]*)?\.nhl\.com/videocenter/console(?:\?(?:.*?[?&])?)id=(?P<id>[-0-9a-zA-Z]+)' + _VALID_URL = r'https?://video(?P<team>\.[^.]*)?\.nhl\.com/videocenter/(?:console)?(?:\?(?:.*?[?&])?)id=(?P<id>[-0-9a-zA-Z]+)' _TESTS = [{ 'url': 'http://video.canucks.nhl.com/videocenter/console?catid=6?id=453614', @@ -92,6 +92,9 @@ class NHLIE(NHLBaseInfoExtractor): }, { 'url': 'http://video.flames.nhl.com/videocenter/console?id=630616', 'only_matching': True, + }, { + 'url': 'http://video.nhl.com/videocenter/?id=736722', + 'only_matching': True, }] def _real_extract(self, url): |