diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-09-08 23:15:58 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-09-08 23:15:58 +0700 |
commit | ad0e2b3359862eb6ac786d8fefd5e20035b051cd (patch) | |
tree | 87e30e514d3f58bf10adee20a5a314f49cb05926 /youtube_dl/extractor | |
parent | 37720844f6d40878bd2f29ea8311c7988ed3fc6a (diff) |
[abcotvs] Add support for ABC Owned Television Stations
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/abcotvs.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube_dl/extractor/abcotvs.py b/youtube_dl/extractor/abcotvs.py index 53a900e50..054bb0596 100644 --- a/youtube_dl/extractor/abcotvs.py +++ b/youtube_dl/extractor/abcotvs.py @@ -12,6 +12,7 @@ from ..utils import ( class ABCOTVSIE(InfoExtractor): IE_NAME = 'abcotvs' + IE_DESC = 'ABC Owned Television Stations' _VALID_URL = r'https?://(?:abc(?:7(?:news|ny|chicago)?|11|13|30)|6abc)\.com(?:/[^/]+/(?P<display_id>[^/]+))?/(?P<id>\d+)' _TESTS = [ { |