youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit b14d5e26f6c5c63f8de600e5159bf9cf12813e8b
parent 9a61dfba0cfb9b978278fe2e1c823c205fcd72dd
Author: Sergey M․ <dstftw@gmail.com>
Date:   Thu, 11 Feb 2016 21:24:07 +0600

[pbs] Improve description extraction

Diffstat:
Myoutube_dl/extractor/pbs.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/pbs.py b/youtube_dl/extractor/pbs.py @@ -507,7 +507,7 @@ class PBSIE(InfoExtractor): 'id': video_id, 'display_id': display_id, 'title': info['title'], - 'description': info['program'].get('description'), + 'description': info.get('description') or info.get('program', {}).get('description'), 'thumbnail': info.get('image_url'), 'duration': int_or_none(info.get('duration')), 'age_limit': age_limit,