浏览代码

[twitch] Fix non-ASCII logins/passwords on python 2

Sergey M․ 10 年之前
父节点
当前提交
c0bf5e1c4d
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      youtube_dl/extractor/twitch.py

+ 2 - 2
youtube_dl/extractor/twitch.py

@@ -64,8 +64,8 @@ class TwitchBaseIE(InfoExtractor):
             login_page))
 
         login_form.update({
-            'login': username,
-            'password': password,
+            'login': username.encode('utf-8'),
+            'password': password.encode('utf-8'),
         })
 
         request = compat_urllib_request.Request(