youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit ab1f697827c8cb1a4d09c03e843ebae123ce35f5
parent 583c714fdebdc8d0c3234aba2343803057d99e38
Author: Ricardo Garcia <sarbalap+freshmeat@gmail.com>
Date:   Sat, 14 Nov 2009 15:04:50 +0100

Use unquote_plus to decode video title

Diffstat:
Myoutube-dl | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube-dl b/youtube-dl @@ -723,7 +723,7 @@ class YoutubeIE(InfoExtractor): if mobj is None: self._downloader.trouble(u'ERROR: unable to extract video title') return - video_title = urllib.unquote(mobj.group(1)) + video_title = urllib.unquote_plus(mobj.group(1)) video_title = video_title.decode('utf-8') video_title = re.sub(ur'(?u)&(.+?);', self.htmlentity_transform, video_title) video_title = video_title.replace(os.sep, u'%')