xvideos: Fix misleading error message when extracting the URL.

We said that we were trying to extract the title of the video.
This commit is contained in:
Rogério Brito 2011-10-18 18:41:02 -02:00
parent a1a8713aad
commit 9f47175a40
1 changed files with 1 additions and 1 deletions

View File

@ -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'))