slight change to Dailymotion uploader regex (fix)

This commit is contained in:
Filippo Valsorda 2012-10-28 21:43:43 +01:00
parent 25b7fd9c01
commit fe4d68e196
1 changed files with 1 additions and 1 deletions

View File

@ -692,7 +692,7 @@ class DailymotionIE(InfoExtractor):
video_title = unescapeHTML(mobj.group('title').decode('utf-8'))
video_uploader = u'NA'
mobj = re.search(r'(?im)<span class="owner[^\"]+?">[^<]+?<a [^>]+?>([^<]+?)</a></span>', webpage)
mobj = re.search(r'(?im)<span class="owner[^\"]+?">[^<]+?<a [^>]+?>([^<]+?)</a>', webpage)
if mobj is None:
self._downloader.trouble(u'WARNING: unable to extract uploader nickname')
else: