Browse Source
[tvnoe] Do not capture unused groups in _VALID_URL
master
Sergey M․
8 years ago
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with
1 additions and
1 deletions
-
youtube_dl/extractor/tvnoe.py
|
|
@ -10,7 +10,7 @@ from ..utils import ( |
|
|
|
|
|
|
|
|
|
|
|
class TVNoeIE(JWPlatformBaseIE): |
|
|
|
_VALID_URL = r'https?://(www\.)?tvnoe\.cz/video/(?P<id>[0-9]+)' |
|
|
|
_VALID_URL = r'https?://(?:www\.)?tvnoe\.cz/video/(?P<id>[0-9]+)' |
|
|
|
_TEST = { |
|
|
|
'url': 'http://www.tvnoe.cz/video/10362', |
|
|
|
'md5': 'aee983f279aab96ec45ab6e2abb3c2ca', |
|
|
|