aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/vk.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-03-01 21:55:43 +0600
committerSergey M․ <dstftw@gmail.com>2015-03-01 21:55:43 +0600
commit1aa5172f56eca82ccb473859c6850ada677e6551 (patch)
treebe93980da97c492010c1ec49034eefe5e39e1d54 /youtube_dl/extractor/vk.py
parentf7e2ee8fa6a3c5ca9ae8b8d25ae489f502c6277c (diff)
downloadyoutube-dl-1aa5172f56eca82ccb473859c6850ada677e6551.tar.xz
[vk] Catch temporarily unavailable video error message
Diffstat (limited to 'youtube_dl/extractor/vk.py')
-rw-r--r--youtube_dl/extractor/vk.py5
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():