diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-03-01 21:55:43 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-03-01 21:55:43 +0600 |
commit | 1aa5172f56eca82ccb473859c6850ada677e6551 (patch) | |
tree | be93980da97c492010c1ec49034eefe5e39e1d54 /youtube_dl | |
parent | f7e2ee8fa6a3c5ca9ae8b8d25ae489f502c6277c (diff) |
[vk] Catch temporarily unavailable video error message
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/vk.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/extractor/vk.py b/youtube_dl/extractor/vk.py index 7dea8c59d..08c3830a2 100644 --- a/youtube_dl/extractor/vk.py +++ b/youtube_dl/extractor/vk.py @@ -152,7 +152,10 @@ class VKIE(InfoExtractor): 'use --username and --password options to provide account credentials.', r'<!>Unknown error': - 'Video %s does not exist.' + 'Video %s does not exist.', + + r'<!>Видео временно недоступно': + 'Video %s is temporarily unavailable.', } for error_re, error_msg in ERRORS.items(): |