diff options
| author | Sergey M․ <dstftw@gmail.com> | 2015-11-06 21:08:21 +0600 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2015-11-06 21:08:21 +0600 | 
| commit | 1e2eb4b40d46f39d15c067657ecad16fa3b2121d (patch) | |
| tree | 6024cce37889d3f0fdea201db37e54ad629f7d28 | |
| parent | 01003d072c20c2ed095930d87c5ce3d5610e66b1 (diff) | |
[njoy] Relax _VALID_URL
| -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 0be866681..7043c7e0f 100644 --- a/youtube_dl/extractor/ndr.py +++ b/youtube_dl/extractor/ndr.py @@ -105,7 +105,7 @@ class NDRIE(NDRBaseIE):  class NJoyIE(NDRBaseIE):      IE_NAME = 'njoy'      IE_DESC = 'N-JOY' -    _VALID_URL = r'https?://www\.n-joy\.de/(?:[^/]+/)+(?:(?P<display_id>[^/?#]+),)?(?P<id>[\da-z]+)\.html' +    _VALID_URL = r'https?://www\.n-joy\.de/(?:[^/]+/)*(?:(?P<display_id>[^/?#]+),)?(?P<id>[\da-z]+)\.html'      _TESTS = [{          # httpVideo, same content id          'url': 'http://www.n-joy.de/entertainment/comedy/comedy_contest/Benaissa-beim-NDR-Comedy-Contest,comedycontest2480.html', | 
