Browse Source

Use quote_plus instead of manually replacing spaces by plus signs

rtmp_test
Ricardo Garcia 16 years ago
parent
commit
a9633f1457
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube-dl

+ 1
- 1
youtube-dl View File

@ -776,7 +776,7 @@ class YoutubeSearchIE(InfoExtractor):
while True:
self.report_download_page(query, pagenum)
result_url = self._TEMPLATE_URL % (urllib.quote(query.replace(' ', '+')), pagenum)
result_url = self._TEMPLATE_URL % (urllib.quote_plus(query), pagenum)
request = urllib2.Request(result_url, None, std_headers)
try:
page = urllib2.urlopen(request).read()


Loading…
Cancel
Save