Ver Fonte

Make the Dailymotion uploader regexp more flexible because it fails sometimes

Ricardo Garcia há 15 anos atrás
pai
commit
7e2dd306fe
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      youtube-dl

+ 1 - 1
youtube-dl

@@ -1149,7 +1149,7 @@ class DailymotionIE(InfoExtractor):
 		video_title = mobj.group(1).decode('utf-8')
 		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:
 			self._downloader.trouble(u'ERROR: unable to extract uploader nickname')
 			return