diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-11-06 21:06:44 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-11-06 21:06:44 +0600 |
commit | 5003e4283b35acb82ea9793d91bc3cd1ee679f86 (patch) | |
tree | c363f501a256d7ed6330a6e252e2746e94fec643 /youtube_dl | |
parent | 123c781044a8ba0a39edbb839bfaccb929892389 (diff) |
[ndr] Relax _VALID_URL (Closes #7383)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/ndr.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/ndr.py b/youtube_dl/extractor/ndr.py index ba06d8a98..a2b51ccb3 100644 --- a/youtube_dl/extractor/ndr.py +++ b/youtube_dl/extractor/ndr.py @@ -23,7 +23,7 @@ class NDRBaseIE(InfoExtractor): class NDRIE(NDRBaseIE): IE_NAME = 'ndr' IE_DESC = 'NDR.de - Norddeutscher Rundfunk' - _VALID_URL = r'https?://www\.ndr\.de/(?:[^/]+/)+(?P<id>[^/?#]+),[\da-z]+\.html' + _VALID_URL = r'https?://www\.ndr\.de/(?:[^/]+/)*(?P<id>[^/?#]+),[\da-z]+\.html' _TESTS = [{ # httpVideo, same content id 'url': 'http://www.ndr.de/fernsehen/Party-Poette-und-Parade,hafengeburtstag988.html', |