summary refs log tree commit diff
diff options
context:
space:
mode:
authorHakim Boyles <hak@volkanite.net>2018-11-29 14:20:27 -0400
committerSergey M <dstftw@gmail.com>2018-11-30 01:20:27 +0700
commitf012823082c893c0fc1f96afb8a91f5b1c1ae07a (patch)
tree29d3703361bf2117b1069b8dc67bd9f85f792646
parent16597c2f9492651c55e01f441ee9cb5c276209cb (diff)
downloadyoutube-dl-f012823082c893c0fc1f96afb8a91f5b1c1ae07a.tar.gz
youtube-dl-f012823082c893c0fc1f96afb8a91f5b1c1ae07a.tar.xz
youtube-dl-f012823082c893c0fc1f96afb8a91f5b1c1ae07a.zip
[lynda] Fix authentication (closes #18158)
-rw-r--r--youtube_dl/extractor/lynda.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/lynda.py b/youtube_dl/extractor/lynda.py
index 4ba61cd8a..3084c6dff 100644
--- a/youtube_dl/extractor/lynda.py
+++ b/youtube_dl/extractor/lynda.py
@@ -15,7 +15,7 @@ from ..utils import (
 
 
 class LyndaBaseIE(InfoExtractor):
-    _SIGNIN_URL = 'https://www.lynda.com/signin'
+    _SIGNIN_URL = 'https://www.lynda.com/signin/lynda'
     _PASSWORD_URL = 'https://www.lynda.com/signin/password'
     _USER_URL = 'https://www.lynda.com/signin/user'
     _ACCOUNT_CREDENTIALS_HINT = 'Use --username and --password options to provide lynda.com account credentials.'