diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-09-08 17:28:46 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-08 17:28:46 +0800 |
commit | 17bf6e71ccc12516c0611e19c52f2daa1f8117df (patch) | |
tree | 52c75c682962a4f5dad7ff9b7daaf284b5a5a577 /youtube_dl/extractor/abcnews.py | |
parent | 881f35479d50f22955fa21b148aa849a64d9dfc0 (diff) | |
parent | 89f257d6e57131a266efae629334fe5f4bcf96e9 (diff) |
Merge pull request #10594 from stepshal/https_support
Add support for https for rest of the exctractors.
Diffstat (limited to 'youtube_dl/extractor/abcnews.py')
-rw-r--r-- | youtube_dl/extractor/abcnews.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/abcnews.py b/youtube_dl/extractor/abcnews.py index b61a6327c..8a5ae42f0 100644 --- a/youtube_dl/extractor/abcnews.py +++ b/youtube_dl/extractor/abcnews.py @@ -12,7 +12,7 @@ from ..compat import compat_urlparse class AbcNewsVideoIE(AMPIE): IE_NAME = 'abcnews:video' - _VALID_URL = 'http://abcnews.go.com/[^/]+/video/(?P<display_id>[0-9a-z-]+)-(?P<id>\d+)' + _VALID_URL = 'https?://abcnews.go.com/[^/]+/video/(?P<display_id>[0-9a-z-]+)-(?P<id>\d+)' _TESTS = [{ 'url': 'http://abcnews.go.com/ThisWeek/video/week-exclusive-irans-foreign-minister-zarif-20411932', |