mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 23:24:49 +00:00
YoutubeSearchIE: the query is a str, in python 3 it fails if decode is called
This commit is contained in:
parent
9abc6c8b31
commit
f380401bbd
1 changed files with 0 additions and 1 deletions
|
@ -1424,7 +1424,6 @@ class YoutubeSearchIE(SearchInfoExtractor):
|
||||||
|
|
||||||
def report_download_page(self, query, pagenum):
|
def report_download_page(self, query, pagenum):
|
||||||
"""Report attempt to download search page with given number."""
|
"""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))
|
self._downloader.to_screen(u'[youtube] query "%s": Downloading page %s' % (query, pagenum))
|
||||||
|
|
||||||
def _get_n_results(self, query, n):
|
def _get_n_results(self, query, n):
|
||||||
|
|
Loading…
Reference in a new issue