Don't try to write the subtitles if it's None
This commit is contained in:
		
							parent
							
								
									2f799533ae
								
							
						
					
					
						commit
						6804038d06
					
				
					 1 changed files with 2 additions and 0 deletions
				
			
		| 
						 | 
					@ -494,6 +494,8 @@ class YoutubeDL(object):
 | 
				
			||||||
            sub_format = self.params.get('subtitlesformat')
 | 
					            sub_format = self.params.get('subtitlesformat')
 | 
				
			||||||
            for sub_lang in subtitles.keys():
 | 
					            for sub_lang in subtitles.keys():
 | 
				
			||||||
                sub = subtitles[sub_lang]
 | 
					                sub = subtitles[sub_lang]
 | 
				
			||||||
 | 
					                if sub is None:
 | 
				
			||||||
 | 
					                    continue
 | 
				
			||||||
                try:
 | 
					                try:
 | 
				
			||||||
                    sub_filename = filename.rsplit('.', 1)[0] + u'.' + sub_lang + u'.' + sub_format
 | 
					                    sub_filename = filename.rsplit('.', 1)[0] + u'.' + sub_lang + u'.' + sub_format
 | 
				
			||||||
                    self.report_writesubtitles(sub_filename)
 | 
					                    self.report_writesubtitles(sub_filename)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue