diff options
| author | Sergey M. <dstftw@gmail.com> | 2015-05-13 19:36:22 +0500 | 
|---|---|---|
| committer | Sergey M. <dstftw@gmail.com> | 2015-05-13 19:36:22 +0500 | 
| commit | 83880949a17586cd9db59272b42dd43e43b02e2e (patch) | |
| tree | f8e503295d2e638abda5a806a71b1a4bfcf02252 | |
| parent | 3749e36e9f0e6be2a3a3ab1b15c0c02be5a50e2f (diff) | |
| parent | 0b4253fa3710c656e12b6147ed7c1f7843bb9aae (diff) | |
Merge pull request #5682 from blissland/master
[BYUtvIE] Relax thumbnail regex so test does not fail
| -rw-r--r-- | youtube_dl/extractor/byutv.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/youtube_dl/extractor/byutv.py b/youtube_dl/extractor/byutv.py index 6252be05b..3b2de517e 100644 --- a/youtube_dl/extractor/byutv.py +++ b/youtube_dl/extractor/byutv.py @@ -16,7 +16,7 @@ class BYUtvIE(InfoExtractor):              'ext': 'mp4',              'description': 'md5:5438d33774b6bdc662f9485a340401cc',              'title': 'Season 5 Episode 5', -            'thumbnail': 're:^https?://.*promo.*' +            'thumbnail': 're:^https?://.*\.jpg$'          },          'params': {              'skip_download': True, | 
