1
0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2025-05-05 13:17:31 +00:00

Merge 3a5d3e034e8b943e07d66ae9eba179d8c89a834e into c92e184f751a3b58b5a6fbf090f4882932e5bd4b

This commit is contained in:
GitHub Merge Button 2012-01-04 15:39:54 -08:00
commit 413379adb0

View File

@ -1635,7 +1635,7 @@ class DailymotionIE(InfoExtractor):
if mobj is None: if mobj is None:
self._downloader.trouble(u'ERROR: unable to extract title') self._downloader.trouble(u'ERROR: unable to extract title')
return return
video_title = htmlParser.unescape(mobj.group('title')).decode('utf-8') video_title = htmlParser.unescape(mobj.group('title').decode('utf-8'))
video_title = sanitize_title(video_title) video_title = sanitize_title(video_title)
simple_title = _simplify_title(video_title) simple_title = _simplify_title(video_title)