diff options
author | Sergey M. <dstftw@gmail.com> | 2015-05-15 22:36:07 +0500 |
---|---|---|
committer | Sergey M. <dstftw@gmail.com> | 2015-05-15 22:36:07 +0500 |
commit | 2cda13213dc5a60efd20ee777f9c6a53bef93f61 (patch) | |
tree | 4c205898428c23e7597cbfeb707e4d90af6d1337 /youtube_dl | |
parent | 70d0d43b5eeff04b41b089e499401e38c115e456 (diff) | |
parent | e8cfacae3710c2c225488e4b2d41b84268217a55 (diff) |
Merge pull request #5717 from blissland/master
[CBSNewsIE] Relax thumbnail regex so test passes
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/cbsnews.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/cbsnews.py b/youtube_dl/extractor/cbsnews.py index 7e47960ab..52e61d85b 100644 --- a/youtube_dl/extractor/cbsnews.py +++ b/youtube_dl/extractor/cbsnews.py @@ -32,7 +32,7 @@ class CBSNewsIE(InfoExtractor): 'id': 'fort-hood-shooting-army-downplays-mental-illness-as-cause-of-attack', 'ext': 'flv', 'title': 'Fort Hood shooting: Army downplays mental illness as cause of attack', - 'thumbnail': 'http://cbsnews2.cbsistatic.com/hub/i/r/2014/04/04/0c9fbc66-576b-41ca-8069-02d122060dd2/thumbnail/140x90/6dad7a502f88875ceac38202984b6d58/en-0404-werner-replace-640x360.jpg', + 'thumbnail': 're:^https?://.*\.jpg$', 'duration': 205, }, 'params': { |