From: Ricardo Garcia Date: Tue, 24 Nov 2009 19:40:34 +0000 (+0100) Subject: Fix detection of uploader nickname in metacafe (fixes issue #67) X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=commitdiff_plain;h=29f07568051012599320b076d8bddcdb726b3258;p=youtube-dl.git Fix detection of uploader nickname in metacafe (fixes issue #67) --- diff --git a/youtube-dl b/youtube-dl index 52bda1b25..739e3cd7c 100755 --- a/youtube-dl +++ b/youtube-dl @@ -868,7 +868,7 @@ class MetacafeIE(InfoExtractor): return video_title = mobj.group(1).decode('utf-8') - mobj = re.search(r'(?ms)
  • .*?Submitter:.*?(.*?)<', webpage) + mobj = re.search(r'(?ms)By:\s*(.+?)<', webpage) if mobj is None: self._downloader.trouble(u'ERROR: unable to extract uploader nickname') return