1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-09-06 10:59:36 +02:00

[atresplayer] Fix login error detection

This commit is contained in:
zurfyx 2017-03-25 00:45:32 +01:00 committed by Sergey M․
parent 31a1214076
commit 1088d76da6
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D

View File

@ -90,7 +90,8 @@ def _login(self):
request, None, 'Logging in as %s' % username)
error = self._html_search_regex(
r'(?s)<ul class="list_error">(.+?)</ul>', response, 'error', default=None)
r'(?s)<ul[^>]+class="[^"]*\blist_error\b[^"]*">(.+?)</ul>',
response, 'error', default=None)
if error:
raise ExtractorError(
'Unable to login: %s' % error, expected=True)