diff options
author | lkho <llhmtc@gmail.com> | 2020-08-29 15:44:56 +0800 |
---|---|---|
committer | lkho <llhmtc@gmail.com> | 2020-08-29 15:44:56 +0800 |
commit | a8f88d2fece3b883f6a597c63273bf05df77ddca (patch) | |
tree | 2049751bc3c12605d47beb703bcf215fec286100 | |
parent | d82b6697c2d2143cff25029d4c79cb152fdff316 (diff) | |
download | hypervideo-pre-a8f88d2fece3b883f6a597c63273bf05df77ddca.tar.lz hypervideo-pre-a8f88d2fece3b883f6a597c63273bf05df77ddca.tar.xz hypervideo-pre-a8f88d2fece3b883f6a597c63273bf05df77ddca.zip |
[duboku] fix test_no_duplicates
-rw-r--r-- | youtube_dl/extractor/duboku.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/duboku.py b/youtube_dl/extractor/duboku.py index 27b2c9dc4..821585698 100644 --- a/youtube_dl/extractor/duboku.py +++ b/youtube_dl/extractor/duboku.py @@ -47,7 +47,7 @@ class DubokuIE(InfoExtractor): IE_NAME = 'duboku' IE_DESC = 'www.duboku.co' - _VALID_URL = r'(?:https?://[^/]+\.duboku\.co/vodplay/)(?P<id>[0-9\-]+)\.html.*' + _VALID_URL = r'(?:https?://[^/]+\.duboku\.co/vodplay/)(?P<id>[0-9]+-[0-9-]+)\.html.*' _TESTS = [{ 'url': 'https://www.duboku.co/vodplay/1575-1-1.html', 'info_dict': { |