youtube-dl

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

commit 78717fc32802cb1e0f240cfbdf02207c6356ff2b
parent 3b35c3425e2c4d9836a3efe5cf73e35a60f674d1
Author: Sergey M․ <dstftw@gmail.com>
Date:   Tue,  1 Dec 2015 22:10:10 +0600

[udemy] Allow authentication via cookies

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 @@ -72,7 +72,7 @@ class UdemyIE(InfoExtractor): def _login(self): (username, password) = self._get_login_info() if username is None: - self.raise_login_required('Udemy account is required') + return login_popup = self._download_webpage( self._LOGIN_URL, None, 'Downloading login popup')