Use quote_plus instead of manually replacing spaces by plus signs
This commit is contained in:
		
							parent
							
								
									a20e4c2f96
								
							
						
					
					
						commit
						a9633f1457
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -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…
	
	Add table
		Add a link
		
	
		Reference in a new issue