From 9f47175a405a8685463a6bc719e09359c0f7c5c1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rog=C3=A9rio=20Brito?= Date: Tue, 18 Oct 2011 18:41:02 -0200 Subject: [PATCH] xvideos: Fix misleading error message when extracting the URL. We said that we were trying to extract the title of the video. --- youtube-dl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube-dl b/youtube-dl index f8e9095..f895658 100755 --- a/youtube-dl +++ b/youtube-dl @@ -3426,7 +3426,7 @@ class XVideosIE(InfoExtractor): # Extract video URL mobj = re.search(r'flv_url=(.+?)&', webpage) if mobj is None: - self._downloader.trouble(u'ERROR: unable to extract video title') + self._downloader.trouble(u'ERROR: unable to extract video url') return video_url = urllib2.unquote(mobj.group(1).decode('utf-8')) -- 1.8.3.1