xvideos: Normalize the URL or it will fail with some inputs.
[youtube-dl] / youtube-dl
index 450da8ebdbeb8f2e8030bcd9be70f6c1149ff6a5..f8e9095aee49bb1ff552eabff828388bc477b63d 100755 (executable)
@@ -3413,7 +3413,7 @@ class XVideosIE(InfoExtractor):
 
                self.report_webpage(video_id)
 
-               request = urllib2.Request(url)
+               request = urllib2.Request(r'http://www.xvideos.com/video' + video_id)
                try:
                        webpage = urllib2.urlopen(request).read()
                except (urllib2.URLError, httplib.HTTPException, socket.error), err: