From: Jaime Marquínez Ferrándiz Date: Wed, 5 Feb 2014 22:01:24 +0000 (+0100) Subject: [ina] Improve _VALID_URL regex (fixes #2328) X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=d8061908bb9e5ba708dbee6a05832b865ecea5eb;p=youtube-dl [ina] Improve _VALID_URL regex (fixes #2328) Accept all letters in upper case and don’t require anything after the id --- diff --git a/youtube_dl/extractor/ina.py b/youtube_dl/extractor/ina.py index e9f5f3cf9..0847074ee 100644 --- a/youtube_dl/extractor/ina.py +++ b/youtube_dl/extractor/ina.py @@ -7,7 +7,7 @@ from .common import InfoExtractor class InaIE(InfoExtractor): - _VALID_URL = r'http://(?:www\.)?ina\.fr/video/(?PI?[A-F0-9]+)/.*' + _VALID_URL = r'http://(?:www\.)?ina\.fr/video/(?PI?[A-Z0-9]+)' _TEST = { 'url': 'http://www.ina.fr/video/I12055569/francois-hollande-je-crois-que-c-est-clair-video.html', 'md5': 'a667021bf2b41f8dc6049479d9bb38a3',