Raise correct args in exception
This commit is contained in:
		
							parent
							
								
									81eb98e4bd
								
							
						
					
					
						commit
						50d7a239ae
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -10,7 +10,7 @@ except ImportError: # Python < 2.7
 | 
			
		|||
		p = subprocess.Popen(*args, stdout=subprocess.PIPE, **kwargs)
 | 
			
		||||
		out,err = p.communicate()
 | 
			
		||||
		if p.returncode != 0:
 | 
			
		||||
			raise subprocess.CalledProcessError(p.returncode, p.args)
 | 
			
		||||
			raise subprocess.CalledProcessError(p.returncode, args)
 | 
			
		||||
		return out
 | 
			
		||||
 | 
			
		||||
youtubeDlDir = os.path.join(os.path.dirname(__file__), '..', 'youtube-dl')
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue