diff options
| author | Sergey M․ <dstftw@gmail.com> | 2016-09-27 22:27:10 +0700 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2016-09-27 22:27:10 +0700 | 
| commit | cdfcc4ce95e351c3f560fa3c07ae7d4ab188ef25 (patch) | |
| tree | 1493df98abb9c088c174f082f88c7baf5361c7ec | |
| parent | e3845525906228091fdf446f2cf2e9a20e93f59f (diff) | |
[mtv] Improve _VALID_URL
| -rw-r--r-- | youtube_dl/extractor/mtv.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/youtube_dl/extractor/mtv.py b/youtube_dl/extractor/mtv.py index 2e9580b10..74a3a035e 100644 --- a/youtube_dl/extractor/mtv.py +++ b/youtube_dl/extractor/mtv.py @@ -271,7 +271,7 @@ class MTVServicesEmbeddedIE(MTVServicesInfoExtractor):  class MTVIE(MTVServicesInfoExtractor):      IE_NAME = 'mtv' -    _VALID_URL = r'https?://(?:www\.)?mtv\.com/(video-clips|full-episodes)/(?P<id>[^/?#.]+)' +    _VALID_URL = r'https?://(?:www\.)?mtv\.com/(?:video-clips|full-episodes)/(?P<id>[^/?#.]+)'      _FEED_URL = 'http://www.mtv.com/feeds/mrss/'      _TESTS = [{ | 
