mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-31 23:02:40 +00:00
Fix detection of uploader nickname in metacafe (fixes issue #67)
This commit is contained in:
parent
d9bc015b3c
commit
29f0756805
1 changed files with 1 additions and 1 deletions
|
@ -868,7 +868,7 @@ class MetacafeIE(InfoExtractor):
|
|||
return
|
||||
video_title = mobj.group(1).decode('utf-8')
|
||||
|
||||
mobj = re.search(r'(?ms)<li id="ChnlUsr">.*?Submitter:.*?<a .*?>(.*?)<', webpage)
|
||||
mobj = re.search(r'(?ms)By:\s*<a .*?>(.+?)<', webpage)
|
||||
if mobj is None:
|
||||
self._downloader.trouble(u'ERROR: unable to extract uploader nickname')
|
||||
return
|
||||
|
|
Loading…
Reference in a new issue