mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-16 12:03:28 +01:00
fixed MetacafeIE (uploader nickname regex) - closes #515
This commit is contained in:
parent
b7a34316d2
commit
bf95333e5e
@ -603,7 +603,7 @@ class MetacafeIE(InfoExtractor):
|
|||||||
return
|
return
|
||||||
video_title = mobj.group(1).decode('utf-8')
|
video_title = mobj.group(1).decode('utf-8')
|
||||||
|
|
||||||
mobj = re.search(r'(?ms)By:\s*<a .*?>(.+?)<', webpage)
|
mobj = re.search(r'submitter=(.*?);', webpage)
|
||||||
if mobj is None:
|
if mobj is None:
|
||||||
self._downloader.trouble(u'ERROR: unable to extract uploader nickname')
|
self._downloader.trouble(u'ERROR: unable to extract uploader nickname')
|
||||||
return
|
return
|
||||||
|
Loading…
Reference in New Issue
Block a user