youtube-dl

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

commit f380401bbd1f41e00bc2d75a1354aed64bb18c30
parent 9abc6c8b3114083edd080a9f4357dcf4b3fd288c
Author: Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Date:   Tue, 11 Jun 2013 19:15:07 +0200

YoutubeSearchIE: the query is a str, in python 3 it fails if decode is called

Diffstat:
Myoutube_dl/InfoExtractors.py | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py @@ -1424,7 +1424,6 @@ class YoutubeSearchIE(SearchInfoExtractor): def report_download_page(self, query, pagenum): """Report attempt to download search page with given number.""" - query = query.decode(preferredencoding()) self._downloader.to_screen(u'[youtube] query "%s": Downloading page %s' % (query, pagenum)) def _get_n_results(self, query, n):