瀏覽代碼

[twitch] Show reset password request

Sergey M․ 10 年之前
父節點
當前提交
17b41a3337
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      youtube_dl/extractor/twitch.py

+ 3 - 0
youtube_dl/extractor/twitch.py

@@ -81,6 +81,9 @@ class TwitchBaseIE(InfoExtractor):
             raise ExtractorError(
                 'Unable to login. Twitch said: %s' % error_message, expected=True)
 
+        if '>Reset your password<' in response:
+            self.report_warning('Twitch asks you to reset your password, go to https://secure.twitch.tv/reset/submit')
+
     def _prefer_source(self, formats):
         try:
             source = next(f for f in formats if f['format_id'] == 'Source')