commit: 98044462b1035000a44b35a41f4f780b2e844f2e
parent 0dcb318f622d944ad0f5c23c32c9bc9b00e76aaa
Author: Sergey M․ <dstftw@gmail.com>
Date: Sun, 9 Aug 2015 19:18:50 +0600
[extractor/common] Use playlist id as default title
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py
@@ -1157,7 +1157,7 @@ class InfoExtractor(object):
entries = []
for track in playlist.findall(xpath_with_ns('./xspf:trackList/xspf:track', NS_MAP)):
title = xpath_text(
- track, xpath_with_ns('./xspf:title', NS_MAP), 'title')
+ track, xpath_with_ns('./xspf:title', NS_MAP), 'title', default=playlist_id)
description = xpath_text(
track, xpath_with_ns('./xspf:annotation', NS_MAP), 'description')
thumbnail = xpath_text(