aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/postprocessor
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2017-06-17 19:01:27 +0700
committerSergey M․ <dstftw@gmail.com>2017-06-17 19:05:10 +0700
commitbe80986ed9175af0a0fb216edfdfaeeb9769d1dd (patch)
tree6c7a9b48ed9c0699da879ebdc9bd0f22e749547e /youtube_dl/postprocessor
parent473e87064b7b60ea68147401a2e6487b715f25c8 (diff)
downloadyoutube-dl-be80986ed9175af0a0fb216edfdfaeeb9769d1dd.tar.xz
[postprocessor/metadatafromtitle] Fix missing optional meta fields (closes #13408)
Diffstat (limited to 'youtube_dl/postprocessor')
-rw-r--r--youtube_dl/postprocessor/metadatafromtitle.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/youtube_dl/postprocessor/metadatafromtitle.py b/youtube_dl/postprocessor/metadatafromtitle.py
index c73f02447..f5c14d974 100644
--- a/youtube_dl/postprocessor/metadatafromtitle.py
+++ b/youtube_dl/postprocessor/metadatafromtitle.py
@@ -35,11 +35,14 @@ class MetadataFromTitlePP(PostProcessor):
title = info['title']
match = re.match(self._titleregex, title)
if match is None:
- self._downloader.to_screen('[fromtitle] Could not interpret title of video as "%s"' % self._titleformat)
+ self._downloader.to_screen(
+ '[fromtitle] Could not interpret title of video as "%s"'
+ % self._titleformat)
return [], info
for attribute, value in match.groupdict().items():
- value = match.group(attribute)
info[attribute] = value
- self._downloader.to_screen('[fromtitle] parsed ' + attribute + ': ' + value)
+ self._downloader.to_screen(
+ '[fromtitle] parsed %s: %s'
+ % (attribute, value if value is not None else 'NA'))
return [], info