diff options
author | Rogério Brito <rbrito@ime.usp.br> | 2011-10-18 18:41:02 -0200 |
---|---|---|
committer | Rogério Brito <rbrito@ime.usp.br> | 2011-10-18 18:41:02 -0200 |
commit | 9f47175a405a8685463a6bc719e09359c0f7c5c1 (patch) | |
tree | 9c3d9514d9d86a66cc55f2e4f9e075a0202f0278 | |
parent | a1a8713aadd48e32f8c53a1d8e673a2fdd4b91bc (diff) |
xvideos: Fix misleading error message when extracting the URL.
We said that we were trying to extract the title of the video.
-rwxr-xr-x | youtube-dl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube-dl b/youtube-dl index f8e9095ae..f895658fb 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')) |