summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-07-25 09:34:12 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2013-07-25 09:34:12 +0200
commit0a99956f711d492c6ca08cd086d3d4b5024fd10f (patch)
treee34ead56a422372ffaf90dcb8eb47fad85189568
parent755eb0320ed127fe2f24af13343ae587a63daf22 (diff)
downloadyoutube-dl-0a99956f711d492c6ca08cd086d3d4b5024fd10f.tar.gz
youtube-dl-0a99956f711d492c6ca08cd086d3d4b5024fd10f.tar.xz
youtube-dl-0a99956f711d492c6ca08cd086d3d4b5024fd10f.zip
[ina] Fix URL detection (Fixes #1121)
-rw-r--r--youtube_dl/extractor/ina.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/ina.py b/youtube_dl/extractor/ina.py
index 962c59214..ce1ff32a1 100644
--- a/youtube_dl/extractor/ina.py
+++ b/youtube_dl/extractor/ina.py
@@ -5,7 +5,7 @@ from .common import InfoExtractor
 
 class InaIE(InfoExtractor):
     """Information Extractor for Ina.fr"""
-    _VALID_URL = r'(?:http://)?(?:www\.)?ina\.fr/video/(?P<id>I[0-9]+)/.*'
+    _VALID_URL = r'(?:http://)?(?:www\.)?ina\.fr/video/(?P<id>[A-F0-9]+)/.*'
     _TEST = {
         u'url': u'www.ina.fr/video/I12055569/francois-hollande-je-crois-que-c-est-clair-video.html',
         u'file': u'I12055569.mp4',