1
0
mirror of https://codeberg.org/polarisfm/youtube-dl synced 2025-01-11 15:37:54 +01:00

[cnn] Accept www.cnn.com urls (fixes #1740)

This commit is contained in:
Jaime Marquínez Ferrándiz 2013-11-09 18:16:32 +01:00
parent c2b6a482d5
commit 81be02d2f9

View File

@ -6,7 +6,7 @@ from ..utils import determine_ext
class CNNIE(InfoExtractor):
_VALID_URL = r'''(?x)https?://(edition\.)?cnn\.com/video/(data/.+?|\?)/
_VALID_URL = r'''(?x)https?://((edition|www)\.)?cnn\.com/video/(data/.+?|\?)/
(?P<path>.+?/(?P<title>[^/]+?)(?:\.cnn|(?=&)))'''
_TESTS = [{