[vimeo] Raise the ExtractorError with expected=True when no video password is given
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Wed, 18 Feb 2015 21:00:12 +0000 (22:00 +0100)
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Wed, 18 Feb 2015 21:00:12 +0000 (22:00 +0100)
youtube_dl/extractor/vimeo.py

index e7284049df7740b66d8e9462436de4593973bd87..78d287e0e66d5d0972c3d48edb890673413085ea 100644 (file)
@@ -175,7 +175,7 @@ class VimeoIE(VimeoBaseInfoExtractor, SubtitlesInfoExtractor):
     def _verify_video_password(self, url, video_id, webpage):
         password = self._downloader.params.get('videopassword', None)
         if password is None:
-            raise ExtractorError('This video is protected by a password, use the --video-password option')
+            raise ExtractorError('This video is protected by a password, use the --video-password option', expected=True)
         token = self._search_regex(r'xsrft: \'(.*?)\'', webpage, 'login token')
         data = compat_urllib_parse.urlencode({
             'password': password,