summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-12-11 09:22:08 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2013-12-11 09:22:08 +0100
commit00381b4ccbf0504f15f48aeddc242fd8535b5c2d (patch)
treeb2ae1327cc787c259082a02b9c047533717dc5f6
parentfca1ef19c1dfc5cd841424700816e1ad3b3112eb (diff)
downloadyoutube-dl-00381b4ccbf0504f15f48aeddc242fd8535b5c2d.tar.gz
youtube-dl-00381b4ccbf0504f15f48aeddc242fd8535b5c2d.tar.xz
youtube-dl-00381b4ccbf0504f15f48aeddc242fd8535b5c2d.zip
[pornhub] Fix URL regexp
-rw-r--r--youtube_dl/extractor/pornhub.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/pornhub.py b/youtube_dl/extractor/pornhub.py
index 8b3471919..d9135c6b9 100644
--- a/youtube_dl/extractor/pornhub.py
+++ b/youtube_dl/extractor/pornhub.py
@@ -12,7 +12,7 @@ from ..aes import (
 )
 
 class PornHubIE(InfoExtractor):
-    _VALID_URL = r'^(?:https?://)?(?:www\.)?(?P<url>pornhub\.com/view_video\.php\?viewkey=(?P<videoid>[0-9]+))'
+    _VALID_URL = r'^(?:https?://)?(?:www\.)?(?P<url>pornhub\.com/view_video\.php\?viewkey=(?P<videoid>[0-9a-f]+))'
     _TEST = {
         u'url': u'http://www.pornhub.com/view_video.php?viewkey=648719015',
         u'file': u'648719015.mp4',