diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-07-20 00:39:55 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-07-20 00:39:55 +0600 |
commit | 772acaf31f4614d390a445fe4c0d4e533c165774 (patch) | |
tree | e5c70f8eb8e40c4a73ac80df2d82b117be9409d8 /youtube_dl/extractor/vice.py | |
parent | f8d0745e27aed161687a1c809de87bc6b59d96ae (diff) |
[vice] Do not capture unused groups in _VALID_URL
Diffstat (limited to 'youtube_dl/extractor/vice.py')
-rw-r--r-- | youtube_dl/extractor/vice.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/vice.py b/youtube_dl/extractor/vice.py index dfb621468..e3ad4ef54 100644 --- a/youtube_dl/extractor/vice.py +++ b/youtube_dl/extractor/vice.py @@ -7,7 +7,7 @@ from ..utils import ExtractorError class ViceIE(InfoExtractor): - _VALID_URL = r'https?://(.+?\.)?vice\.com/.*?/(?P<name>.+)' + _VALID_URL = r'https?://(?:.+?\.)?vice\.com/.*?/(?P<name>.+)' _TESTS = [ { |