From: Sergey M․ Date: Tue, 1 Dec 2015 16:10:10 +0000 (+0600) Subject: [udemy] Allow authentication via cookies X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=youtube-dl;a=commitdiff_plain;h=78717fc32802cb1e0f240cfbdf02207c6356ff2b [udemy] Allow authentication via cookies --- diff --git a/youtube_dl/extractor/udemy.py b/youtube_dl/extractor/udemy.py index 9d31a3f5b..e743c0262 100644 --- 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')