about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTRox1972 <TRox1972@users.noreply.github.com>2016-06-10 19:17:58 +0200
committerTRox1972 <TRox1972@users.noreply.github.com>2016-06-10 19:17:58 +0200
commit0434358823a9b7da7656f3e6d8de28d1b42036f5 (patch)
treeb6c761d4df08851bd91ebc97f98d5beaaefbb04b
parente21c26daf9dfb56b9bc4f18f30e7f1c724c9189e (diff)
downloadyoutube-dl-0434358823a9b7da7656f3e6d8de28d1b42036f5.tar.gz
youtube-dl-0434358823a9b7da7656f3e6d8de28d1b42036f5.tar.xz
youtube-dl-0434358823a9b7da7656f3e6d8de28d1b42036f5.zip
[Lynda] Extract course description
-rw-r--r--youtube_dl/extractor/lynda.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/lynda.py b/youtube_dl/extractor/lynda.py
index 86d47266f..c1bca5678 100644
--- a/youtube_dl/extractor/lynda.py
+++ b/youtube_dl/extractor/lynda.py
@@ -246,5 +246,6 @@ class LyndaCourseIE(LyndaBaseIE):
                 % unaccessible_videos + self._ACCOUNT_CREDENTIALS_HINT)
 
         course_title = course.get('Title')
+        course_description = course.get('Description')
 
-        return self.playlist_result(entries, course_id, course_title)
+        return self.playlist_result(entries, course_id, course_title, course_description)