diff options
author | Sergey M․ <dstftw@gmail.com> | 2014-07-18 21:43:01 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2014-07-18 21:43:01 +0700 |
commit | 0c1ffe980d82c664ed46c31eae7c589ebcd7fc20 (patch) | |
tree | 83d05e0d1ecee76a2d7c6e1a49ba3f4f74f94065 /youtube_dl/extractor | |
parent | 5e95cb27d683c62ff03bd219b5aaf41fc62289bb (diff) |
[mlb] Fix _VALID_URL
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/mlb.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/mlb.py b/youtube_dl/extractor/mlb.py index 18ab2c135..c28be3a7d 100644 --- a/youtube_dl/extractor/mlb.py +++ b/youtube_dl/extractor/mlb.py @@ -11,7 +11,7 @@ from ..utils import ( class MLBIE(InfoExtractor): - _VALID_URL = r'http?://m\.mlb\.com/video/(?:topic/[\da-z_-]+/)?v(?P<id>n?\d+)' + _VALID_URL = r'https?://m\.mlb\.com/video/(?:topic/[\da-z_-]+/)?v(?P<id>n?\d+)' _TESTS = [ { 'url': 'http://m.mlb.com/video/topic/81536970/v34496663/mianym-stanton-practices-for-the-home-run-derby', |