summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-06-23 04:26:49 +0700
committerSergey M․ <dstftw@gmail.com>2016-06-23 04:26:49 +0700
commitadf1921dc157af23e8b317d6095b88c87a149e2f (patch)
tree2e1f5ea536c955894fed5c62a984a8b070cd2a80
parent97674f041916860343d804b8b07b73017e1a517f (diff)
downloadyoutube-dl-adf1921dc157af23e8b317d6095b88c87a149e2f.tar.gz
youtube-dl-adf1921dc157af23e8b317d6095b88c87a149e2f.tar.xz
youtube-dl-adf1921dc157af23e8b317d6095b88c87a149e2f.zip
[xnxx] Improve _VALID_URL (Closes #9858)
-rw-r--r--youtube_dl/extractor/xnxx.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/extractor/xnxx.py b/youtube_dl/extractor/xnxx.py
index 1e677a63b..bcb140305 100644
--- a/youtube_dl/extractor/xnxx.py
+++ b/youtube_dl/extractor/xnxx.py
@@ -6,7 +6,7 @@ from ..compat import compat_urllib_parse_unquote
 
 
 class XNXXIE(InfoExtractor):
-    _VALID_URL = r'^https?://(?:video|www)\.xnxx\.com/video-?(?P<id>[0-9a-z]+)/(.*)'
+    _VALID_URL = r'https?://(?:video|www)\.xnxx\.com/video-?(?P<id>[0-9a-z]+)/'
     _TESTS = [{
         'url': 'http://www.xnxx.com/video-55awb78/skyrim_test_video',
         'md5': 'ef7ecee5af78f8b03dca2cf31341d3a0',
@@ -19,6 +19,9 @@ class XNXXIE(InfoExtractor):
     }, {
         'url': 'http://video.xnxx.com/video1135332/lida_naked_funny_actress_5_',
         'only_matching': True,
+    }, {
+        'url': 'http://www.xnxx.com/video-55awb78/',
+        'only_matching': True,
     }]
 
     def _real_extract(self, url):