From ca11eba7730eb58d1c1c71d255a6aae2631b3272 Mon Sep 17 00:00:00 2001 From: harshaadie <38158032+harshaadie@users.noreply.github.com> Date: Fri, 23 Nov 2018 11:36:46 +0530 Subject: [PATCH] Lynda has changed their 'SignIn' path updated path from [website]/signin to [website]signin/lynda updated path from [website]/signin/password to [website]signin/lynda/password updated path from [website]/signin/user to [website]signin/lynda/user --- youtube_dl/extractor/lynda.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/youtube_dl/extractor/lynda.py b/youtube_dl/extractor/lynda.py index 4ba61cd8a..ea5bd644e 100644 --- a/youtube_dl/extractor/lynda.py +++ b/youtube_dl/extractor/lynda.py @@ -15,9 +15,9 @@ from ..utils import ( class LyndaBaseIE(InfoExtractor): - _SIGNIN_URL = 'https://www.lynda.com/signin' - _PASSWORD_URL = 'https://www.lynda.com/signin/password' - _USER_URL = 'https://www.lynda.com/signin/user' + _SIGNIN_URL = 'https://www.lynda.com/signin/lynda' + _PASSWORD_URL = 'https://www.lynda.com/signin/lynda/password' + _USER_URL = 'https://www.lynda.com/signin/lynda/user' _ACCOUNT_CREDENTIALS_HINT = 'Use --username and --password options to provide lynda.com account credentials.' _NETRC_MACHINE = 'lynda'