diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-06-26 19:46:42 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-06-26 19:46:42 +0600 |
commit | 62cca96b729424fa71a3b174af7b646cc1cf12f2 (patch) | |
tree | 433c1db3bd8b2079ee8cfa99bf17f3daa9215401 | |
parent | b4dea075a3f923b4d85d74729479ec4c3e3a313a (diff) |
[lynda] Fix confirm login request (#6088)
-rw-r--r-- | youtube_dl/extractor/lynda.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/lynda.py b/youtube_dl/extractor/lynda.py index 2ff902c65..18efe5a09 100644 --- a/youtube_dl/extractor/lynda.py +++ b/youtube_dl/extractor/lynda.py @@ -65,7 +65,7 @@ class LyndaBaseIE(InfoExtractor): 'stayPut': 'false', } request = compat_urllib_request.Request( - self._LOGIN_URL, compat_urllib_parse.urlencode(confirm_form)) + self._LOGIN_URL, compat_urllib_parse.urlencode(confirm_form).encode('utf-8')) login_page = self._download_webpage( request, None, 'Confirming log in and log out from another device') |