diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-05-09 02:15:51 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-05-09 02:15:51 +0600 |
commit | de765f6c3188802bb2dea704a645f539fa61c8aa (patch) | |
tree | 55eb611ae3197081dafe429d189b549dbea152ab /youtube_dl/extractor/foxsports.py | |
parent | dc455a5f88d6bb9bd5a44352e2b67ef7dd5fd683 (diff) |
[foxsports] Support some more URLs (#5611)
Diffstat (limited to 'youtube_dl/extractor/foxsports.py')
-rw-r--r-- | youtube_dl/extractor/foxsports.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/foxsports.py b/youtube_dl/extractor/foxsports.py index 363866b64..df7665176 100644 --- a/youtube_dl/extractor/foxsports.py +++ b/youtube_dl/extractor/foxsports.py @@ -5,7 +5,7 @@ from ..utils import smuggle_url class FoxSportsIE(InfoExtractor): - _VALID_URL = r'https?://(?:www\.)?foxsports\.com/video\?vid=(?P<id>\d+)' + _VALID_URL = r'https?://(?:www\.)?foxsports\.com/(?:[^/]+/)*(?P<id>[^/]+)' _TEST = { 'url': 'http://www.foxsports.com/video?vid=432609859715', |