Browse Source

[animeondemand] Relax login error regex

Sergey M․ 7 years ago
parent
commit
17c3aced5d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      youtube_dl/extractor/animeondemand.py

+ 2 - 2
youtube_dl/extractor/animeondemand.py

@@ -85,8 +85,8 @@ class AnimeOnDemandIE(InfoExtractor):
 
 
         if all(p not in response for p in ('>Logout<', 'href="/users/sign_out"')):
         if all(p not in response for p in ('>Logout<', 'href="/users/sign_out"')):
             error = self._search_regex(
             error = self._search_regex(
-                r'<p class="alert alert-danger">(.+?)</p>',
-                response, 'error', default=None)
+                r'<p[^>]+\bclass=(["\'])(?:(?!\1).)*\balert\s(?:(?!\1).)*\1[^>]*>(?P<error>.+?)</p>',
+                response, 'error', default=None, group='error')
             if error:
             if error:
                 raise ExtractorError('Unable to login: %s' % error, expected=True)
                 raise ExtractorError('Unable to login: %s' % error, expected=True)
             raise ExtractorError('Unable to log in')
             raise ExtractorError('Unable to log in')