diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2014-01-01 21:11:35 +0100 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2014-01-01 21:11:35 +0100 |
commit | efa1739b744fec049b3d586404390e0cf3c1aa77 (patch) | |
tree | d5455b527e2fe26726196bc877d68790304711fc /youtube_dl | |
parent | 5ffecde73fa88fbe32f4ec2151e1cd0581053843 (diff) |
[comedycentral] Recognize ‘video-collections’ urls (#2072)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/comedycentral.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/youtube_dl/extractor/comedycentral.py b/youtube_dl/extractor/comedycentral.py index a54ce3ee7..27bd8256e 100644 --- a/youtube_dl/extractor/comedycentral.py +++ b/youtube_dl/extractor/comedycentral.py @@ -12,7 +12,9 @@ from ..utils import ( class ComedyCentralIE(MTVServicesInfoExtractor): - _VALID_URL = r'https?://(?:www.)?comedycentral.com/(video-clips|episodes|cc-studios)/(?P<title>.*)' + _VALID_URL = r'''(?x)https?://(?:www.)?comedycentral.com/ + (video-clips|episodes|cc-studios|video-collections) + /(?P<title>.*)''' _FEED_URL = u'http://comedycentral.com/feeds/mrss/' _TEST = { |