1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-18 11:09:32 +00:00

[pluralsight] Detect blocked account error message (#12070)

This commit is contained in:
Sergey M․ 2017-02-10 22:48:11 +07:00
parent 9510709575
commit 9dd5408c99
No known key found for this signature in database
GPG key ID: 2C393E0F18A9236D

View file

@ -92,6 +92,10 @@ class PluralsightIE(PluralsightBaseIE):
raise ExtractorError('Unable to login: %s' % error, expected=True)
if all(p not in response for p in ('__INITIAL_STATE__', '"currentUser"')):
BLOCKED = 'Your account has been blocked due to suspicious activity'
if BLOCKED in response:
raise ExtractorError(
'Unable to login: %s' % BLOCKED, expected=True)
raise ExtractorError('Unable to log in')
def _get_subtitles(self, author, clip_id, lang, name, duration, video_id):