youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 17b41a3337b5326fd2c8dec8aa1ab285225e1daa
parent 89a683ae745de77f96ac8e82c8ff16d2675fa398
Author: Sergey M․ <dstftw@gmail.com>
Date:   Fri, 10 Jul 2015 21:16:42 +0600

[twitch] Show reset password request

Diffstat:
Myoutube_dl/extractor/twitch.py | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/youtube_dl/extractor/twitch.py b/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')