From a1a8713aadd48e32f8c53a1d8e673a2fdd4b91bc Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rog=C3=A9rio=20Brito?= Date: Tue, 18 Oct 2011 18:38:17 -0200 Subject: [PATCH] xvideos: Normalize the URL or it will fail with some inputs. For instance, if we give it , we would end up passing that to urllib2, which would complain about an unknown URL type. --- youtube-dl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube-dl b/youtube-dl index 450da8e..f8e9095 100755 --- a/youtube-dl +++ b/youtube-dl @@ -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: -- 1.8.3.1