diff options
author | Remita Amine <remitamine@gmail.com> | 2016-09-05 13:41:11 +0100 |
---|---|---|
committer | Remita Amine <remitamine@gmail.com> | 2016-09-05 13:41:21 +0100 |
commit | 0b36a96212861b3fc3f11b26c22216ed3cc4d2ce (patch) | |
tree | 365626f24b941df942db1cbf3ee1cd4a753787c7 /youtube_dl/extractor/extractors.py | |
parent | bc22a7969485ada4b8cca242ac96a20e5e9e37b3 (diff) |
[abcotvs] extend _VALID_URL and add support for clips.abcotvs.com(closes #9551)
Diffstat (limited to 'youtube_dl/extractor/extractors.py')
-rw-r--r-- | youtube_dl/extractor/extractors.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/extractor/extractors.py b/youtube_dl/extractor/extractors.py index e47adc26c..dbd5fa965 100644 --- a/youtube_dl/extractor/extractors.py +++ b/youtube_dl/extractor/extractors.py @@ -5,11 +5,14 @@ from .abc import ( ABCIE, ABCIViewIE, ) -from .abc7news import Abc7NewsIE from .abcnews import ( AbcNewsIE, AbcNewsVideoIE, ) +from .abcotvs import ( + ABCOTVSIE, + ABCOTVSClipsIE, +) from .academicearth import AcademicEarthCourseIE from .acast import ( ACastIE, |