From: Sergey M․ Date: Sun, 1 Mar 2015 15:55:43 +0000 (+0600) Subject: [vk] Catch temporarily unavailable video error message X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=commitdiff_plain;ds=sidebyside;h=1aa5172f56eca82ccb473859c6850ada677e6551;p=youtube-dl.git [vk] Catch temporarily unavailable video error message --- 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():