diff options
author | stepshal <nessento@openmailbox.org> | 2016-09-08 17:04:57 +0700 |
---|---|---|
committer | stepshal <nessento@openmailbox.org> | 2016-09-08 17:04:57 +0700 |
commit | 25042f73722c37e4ec88030cf69e23ae76c4359b (patch) | |
tree | e2a96f09347cf1fdc5fae6452aa111c54d603cbd /youtube_dl/extractor/ard.py | |
parent | 3f612f076708973fce52d6b6053b24e2234a9c26 (diff) |
Add missing r prefix for _VALID_URLs
Diffstat (limited to 'youtube_dl/extractor/ard.py')
-rw-r--r-- | youtube_dl/extractor/ard.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/ard.py b/youtube_dl/extractor/ard.py index 07e67dd33..3a806a69b 100644 --- a/youtube_dl/extractor/ard.py +++ b/youtube_dl/extractor/ard.py @@ -238,7 +238,7 @@ class ARDMediathekIE(InfoExtractor): class ARDIE(InfoExtractor): - _VALID_URL = '(?P<mainurl>https?://(www\.)?daserste\.de/[^?#]+/videos/(?P<display_id>[^/?#]+)-(?P<id>[0-9]+))\.html' + _VALID_URL = r'(?P<mainurl>https?://(www\.)?daserste\.de/[^?#]+/videos/(?P<display_id>[^/?#]+)-(?P<id>[0-9]+))\.html' _TEST = { 'url': 'http://www.daserste.de/information/reportage-dokumentation/dokus/videos/die-story-im-ersten-mission-unter-falscher-flagge-100.html', 'md5': 'd216c3a86493f9322545e045ddc3eb35', |