aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-01-01 21:11:35 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-01-01 21:11:35 +0100
commitefa1739b744fec049b3d586404390e0cf3c1aa77 (patch)
treed5455b527e2fe26726196bc877d68790304711fc
parent5ffecde73fa88fbe32f4ec2151e1cd0581053843 (diff)
downloadyoutube-dl-efa1739b744fec049b3d586404390e0cf3c1aa77.tar.xz
[comedycentral] Recognize ‘video-collections’ urls (#2072)
-rw-r--r--youtube_dl/extractor/comedycentral.py4
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 = {