diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-04-20 22:14:32 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-04-20 22:14:32 +0600 |
commit | 494ab6db7394b39126d775efe03eb6dab428eff9 (patch) | |
tree | fffee77fae5502b6693e84a52f569e7d77fdc6e1 /youtube_dl/extractor/youtube.py | |
parent | 107701fcfced36af62465f4a56a0a9723f5253bf (diff) |
[youtube] Capture and output login error message
Diffstat (limited to 'youtube_dl/extractor/youtube.py')
-rw-r--r-- | youtube_dl/extractor/youtube.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index a4dd628a1..44f98d294 100644 --- a/youtube_dl/extractor/youtube.py +++ b/youtube_dl/extractor/youtube.py @@ -125,6 +125,12 @@ class YoutubeBaseInfoExtractor(InfoExtractor): if login_results is False: return False + error_msg = self._html_search_regex( + r'<[^>]+id="errormsg_0_Passwd"[^>]*>([^<]+)<', + login_results, 'error message', default=None) + if error_msg: + raise ExtractorError('Unable to login: %s' % error_msg, expected=True) + if re.search(r'id="errormsg_0_Passwd"', login_results) is not None: raise ExtractorError('Please use your account password and a two-factor code instead of an application-specific password.', expected=True) |