diff options
author | stepshal <nessento@openmailbox.org> | 2016-09-08 13:52:22 +0700 |
---|---|---|
committer | stepshal <nessento@openmailbox.org> | 2016-09-08 13:52:22 +0700 |
commit | 89f257d6e57131a266efae629334fe5f4bcf96e9 (patch) | |
tree | 1c919e664681228a80eb111b6cf95138e2bce469 /youtube_dl/extractor/abcnews.py | |
parent | 846d8b76a07f617b595e0f1a2ae7ba22acafd98d (diff) |
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', |