mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-06 23:27:00 +01:00
Make the Dailymotion uploader regexp more flexible because it fails sometimes
This commit is contained in:
parent
dea147f78e
commit
7e2dd306fe
@ -1149,7 +1149,7 @@ class DailymotionIE(InfoExtractor):
|
|||||||
video_title = mobj.group(1).decode('utf-8')
|
video_title = mobj.group(1).decode('utf-8')
|
||||||
video_title = sanitize_title(video_title)
|
video_title = sanitize_title(video_title)
|
||||||
|
|
||||||
mobj = re.search(r'(?im)<div class="dmco_html owner"><a class="name" href="/.+">(.+?)</a></div>', webpage)
|
mobj = re.search(r'(?im)<div class="dmco_html owner">.*?<a class="name" href="/.+?">(.+?)</a></div>', 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