mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 04:57:07 -05:00 
			
		
		
		
	Correct check for empty dirname (Fixes #2683)
This commit is contained in:
		@@ -876,7 +876,7 @@ class YoutubeDL(object):
 | 
			
		||||
 | 
			
		||||
        try:
 | 
			
		||||
            dn = os.path.dirname(encodeFilename(filename))
 | 
			
		||||
            if dn != '' and not os.path.exists(dn):
 | 
			
		||||
            if dn and not os.path.exists(dn):
 | 
			
		||||
                os.makedirs(dn)
 | 
			
		||||
        except (OSError, IOError) as err:
 | 
			
		||||
            self.report_error('unable to create directory ' + compat_str(err))
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user