[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')) |                 is_id=(k == 'id')) | ||||||
|             template_dict = dict((k, sanitize(k, v)) |             template_dict = dict((k, sanitize(k, v)) | ||||||
|                                  for k, v in template_dict.items() |                                  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) |             template_dict = collections.defaultdict(lambda: 'NA', template_dict) | ||||||
|  |  | ||||||
|             outtmpl = self.params.get('outtmpl', DEFAULT_OUTTMPL) |             outtmpl = self.params.get('outtmpl', DEFAULT_OUTTMPL) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Sergey M․
					Sergey M․