diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-09-08 18:31:09 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-08 18:31:09 +0800 |
commit | 02e552886f99a0894fa3265531f6853a19323970 (patch) | |
tree | e2a96f09347cf1fdc5fae6452aa111c54d603cbd /youtube_dl/extractor/abcnews.py | |
parent | 3f612f076708973fce52d6b6053b24e2234a9c26 (diff) | |
parent | 25042f73722c37e4ec88030cf69e23ae76c4359b (diff) | |
download | hypervideo-pre-02e552886f99a0894fa3265531f6853a19323970.tar.lz hypervideo-pre-02e552886f99a0894fa3265531f6853a19323970.tar.xz hypervideo-pre-02e552886f99a0894fa3265531f6853a19323970.zip |
Merge pull request #10596 from stepshal/r_prefix
Add missing r prefix for _VALID_URLs
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 01247fead..6ae5d9a96 100644 --- a/youtube_dl/extractor/abcnews.py +++ b/youtube_dl/extractor/abcnews.py @@ -49,7 +49,7 @@ class AbcNewsVideoIE(AMPIE): class AbcNewsIE(InfoExtractor): IE_NAME = 'abcnews' - _VALID_URL = 'https?://abcnews\.go\.com/(?:[^/]+/)+(?P<display_id>[0-9a-z-]+)/story\?id=(?P<id>\d+)' + _VALID_URL = r'https?://abcnews\.go\.com/(?:[^/]+/)+(?P<display_id>[0-9a-z-]+)/story\?id=(?P<id>\d+)' _TESTS = [{ 'url': 'http://abcnews.go.com/Blotter/News/dramatic-video-rare-death-job-america/story?id=10498713#.UIhwosWHLjY', |