From 772acaf31f4614d390a445fe4c0d4e533c165774 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sergey=20M=E2=80=A4?= Date: Mon, 20 Jul 2015 00:39:55 +0600 Subject: [PATCH] [vice] Do not capture unused groups in _VALID_URL --- youtube_dl/extractor/vice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.+)' + _VALID_URL = r'https?://(?:.+?\.)?vice\.com/.*?/(?P.+)' _TESTS = [ { -- 2.30.2