Fix os.makedirs in Windows
This commit is contained in:
		
							parent
							
								
									eb99a7ee5f
								
							
						
					
					
						commit
						e5e74ffb97
					
				
					 1 changed files with 3 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -711,7 +711,9 @@ class FileDownloader(object):
 | 
			
		|||
			return
 | 
			
		||||
 | 
			
		||||
		try:
 | 
			
		||||
			os.makedirs(os.path.dirname(filename))
 | 
			
		||||
			dn = os.path.dirname(filename)
 | 
			
		||||
			if dn != '' and not os.path.exists(dn):
 | 
			
		||||
				os.makedirs(dn)
 | 
			
		||||
		except (OSError, IOError), err:
 | 
			
		||||
			self.trouble(u'ERROR: unable to create directories: %s' % str(err))
 | 
			
		||||
			return
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue