youtube-dl

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

commit 3092fc4035dd3a0841a92227e9bd80b7b9e4d871
parent f5bc4b5f95393b5fc83f5c64d44ee78093f9d798
Author: Sergey M․ <dstftw@gmail.com>
Date:   Thu, 31 Dec 2015 01:09:21 +0600

[udemy] Fix typo

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

diff --git a/youtube_dl/extractor/udemy.py b/youtube_dl/extractor/udemy.py @@ -147,7 +147,7 @@ class UdemyIE(InfoExtractor): # Error could possibly mean we are not enrolled in the course if isinstance(e.cause, compat_HTTPError) and e.cause.code == 403: self._enroll_course(webpage, course_id) - lecture_id = self._download_lecture(course_id, lecture_id) + lecture = self._download_lecture(course_id, lecture_id) else: raise