diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-04-24 20:04:21 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-04-24 20:05:24 +0800 |
commit | a8062eabcd850278d5545e2a8e6d39392e540571 (patch) | |
tree | 28dd5287b0ef2646cb9e6be4ad4bb8d3f6dfbddb /youtube_dl | |
parent | 2a7dee8cc5afac1036bd2f071c8cca8ac9815d8f (diff) |
[mwave] Skip checking unstable MD5
On my PC the checksum is 02eda6d09fb63131a17a8d44e6237463, while a
recent Travis CI build
(https://travis-ci.org/rg3/youtube-dl/jobs/125341081) shows it's
c930e27b7720aaa3c9d0018dfc8ff6cc
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/mwave.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/mwave.py b/youtube_dl/extractor/mwave.py index 66b523197..5c3c8d464 100644 --- a/youtube_dl/extractor/mwave.py +++ b/youtube_dl/extractor/mwave.py @@ -12,7 +12,7 @@ class MwaveIE(InfoExtractor): _VALID_URL = r'https?://mwave\.interest\.me/mnettv/videodetail\.m\?searchVideoDetailVO\.clip_id=(?P<id>[0-9]+)' _TEST = { 'url': 'http://mwave.interest.me/mnettv/videodetail.m?searchVideoDetailVO.clip_id=168859', - 'md5': 'c930e27b7720aaa3c9d0018dfc8ff6cc', + # md5 is unstable 'info_dict': { 'id': '168859', 'ext': 'flv', |