aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2017-12-20 23:17:36 +0700
committerSergey M․ <dstftw@gmail.com>2017-12-20 23:18:14 +0700
commitd2d766bc6d6f976c28fad8b69a1de060b55f5b17 (patch)
tree69743be27eb71e2ea016bced42d94c2741e8b7cc /youtube_dl
parent17c3aced5d0d2cf7df41e9978500260756ee8ad9 (diff)
downloadyoutube-dl-d2d766bc6d6f976c28fad8b69a1de060b55f5b17.zip
youtube-dl-d2d766bc6d6f976c28fad8b69a1de060b55f5b17.tar.gz
youtube-dl-d2d766bc6d6f976c28fad8b69a1de060b55f5b17.tar.bz2
[animeondemand] Fix typo
Diffstat (limited to 'youtube_dl')
-rw-r--r--youtube_dl/extractor/animeondemand.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/animeondemand.py b/youtube_dl/extractor/animeondemand.py
index be032d5..e4fa72f 100644
--- a/youtube_dl/extractor/animeondemand.py
+++ b/youtube_dl/extractor/animeondemand.py
@@ -85,7 +85,7 @@ class AnimeOnDemandIE(InfoExtractor):
if all(p not in response for p in ('>Logout<', 'href="/users/sign_out"')):
error = self._search_regex(
- r'<p[^>]+\bclass=(["\'])(?:(?!\1).)*\balert\s(?:(?!\1).)*\1[^>]*>(?P<error>.+?)</p>',
+ r'<p[^>]+\bclass=(["\'])(?:(?!\1).)*\balert\b(?:(?!\1).)*\1[^>]*>(?P<error>.+?)</p>',
response, 'error', default=None, group='error')
if error:
raise ExtractorError('Unable to login: %s' % error, expected=True)