Browse Source

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

rtmp_test
Jaime Marquínez Ferrándiz 11 years ago
parent
commit
81be02d2f9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/cnn.py

+ 1
- 1
youtube_dl/extractor/cnn.py 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 = [{


Loading…
Cancel
Save