youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit e01bfc19c345f189b65f3c6e4064b304f1cd337f
parent 4d32b6385160e8cf9117839022ed795ce02b107d
Author: Sergey M․ <dstftw@gmail.com>
Date:   Fri, 10 Feb 2017 09:39:24 +0700

[extractor/commonmistakes] Restrict _VALID_URL (closes #12050)

Diffstat:
Myoutube_dl/extractor/commonmistakes.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/commonmistakes.py b/youtube_dl/extractor/commonmistakes.py @@ -7,7 +7,7 @@ from ..utils import ExtractorError class CommonMistakesIE(InfoExtractor): IE_DESC = False # Do not list _VALID_URL = r'''(?x) - (?:url|URL) + (?:url|URL)$ ''' _TESTS = [{