diff options
author | gam2046 <gam2046@qq.com> | 2015-12-18 14:18:56 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2015-12-28 00:16:21 +0800 |
commit | 82e02ea5fce6bbc595dbfefc8eafce21e2bb53cc (patch) | |
tree | 269c5a47d0ceda57e63f6c207a74fb9ce0e9c5ba /youtube_dl | |
parent | a95c26a06a88ab464638d16b42d1659a15e71c3c (diff) |
Update iqiyi.py
Fix part of the address can not be resolved.
eg:http://www.iqiyi.com/w_19rt6o8t9p.html
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/iqiyi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/iqiyi.py b/youtube_dl/extractor/iqiyi.py index c3731a110..f0e2e5104 100644 --- a/youtube_dl/extractor/iqiyi.py +++ b/youtube_dl/extractor/iqiyi.py @@ -16,7 +16,7 @@ class IqiyiIE(InfoExtractor): IE_NAME = 'iqiyi' IE_DESC = '爱奇艺' - _VALID_URL = r'http://(?:www\.)iqiyi.com/v_.+?\.html' + _VALID_URL = r'http://(?:www\.)iqiyi.com/._.+?\.html' _TESTS = [{ 'url': 'http://www.iqiyi.com/v_19rrojlavg.html', |