From: Sergey M․ Date: Fri, 10 Feb 2017 02:39:24 +0000 (+0700) Subject: [extractor/commonmistakes] Restrict _VALID_URL (closes #12050) X-Git-Url: http://git.bitcoin.ninja/?a=commitdiff_plain;h=e01bfc19c345f189b65f3c6e4064b304f1cd337f;p=youtube-dl [extractor/commonmistakes] Restrict _VALID_URL (closes #12050) --- diff --git a/youtube_dl/extractor/commonmistakes.py b/youtube_dl/extractor/commonmistakes.py index 2f86e2381..d3ed4a9a4 100644 --- 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 = [{