mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 03:27:06 -05:00 
			
		
		
		
	[YoutubeDL] Skip non-relevant field types when building output template
This commit is contained in:
		@@ -580,7 +580,7 @@ class YoutubeDL(object):
 | 
			
		||||
                is_id=(k == 'id'))
 | 
			
		||||
            template_dict = dict((k, sanitize(k, v))
 | 
			
		||||
                                 for k, v in template_dict.items()
 | 
			
		||||
                                 if v is not None)
 | 
			
		||||
                                 if v is not None and not isinstance(v, (list, tuple, dict)))
 | 
			
		||||
            template_dict = collections.defaultdict(lambda: 'NA', template_dict)
 | 
			
		||||
 | 
			
		||||
            outtmpl = self.params.get('outtmpl', DEFAULT_OUTTMPL)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user