[nhl] Match videos without catid (Fixes #3764)
authorPhilipp Hagemeister <phihag@phihag.de>
Tue, 16 Sep 2014 08:08:34 +0000 (10:08 +0200)
committerPhilipp Hagemeister <phihag@phihag.de>
Tue, 16 Sep 2014 08:08:34 +0000 (10:08 +0200)
youtube_dl/extractor/nhl.py

index ceda1dcc0f6a0ef70d3590990910a0a36556e70a..072d9cf8e49438f5688a9eef6ef43d0efd0cf8c2 100644 (file)
@@ -46,9 +46,9 @@ 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-9]+)'
+    _VALID_URL = r'https?://video(?P<team>\.[^.]*)?\.nhl\.com/videocenter/console(?:\?(?:.*?[?&])?)id=(?P<id>[0-9]+)'
 
-    _TEST = {
+    _TESTS = [{
         'url': 'http://video.canucks.nhl.com/videocenter/console?catid=6?id=453614',
         'info_dict': {
             'id': '453614',
@@ -58,7 +58,10 @@ class NHLIE(NHLBaseInfoExtractor):
             'duration': 18,
             'upload_date': '20131006',
         },
-    }
+    }, {
+        'url': 'http://video.flames.nhl.com/videocenter/console?id=630616',
+        'only_matching': True,
+    }]
 
     def _real_extract(self, url):
         mobj = re.match(self._VALID_URL, url)