summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-01-06 23:35:24 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-01-06 23:35:27 +0100
commit559e370f44fd77db1f5b2f4f6a83beaab0848bf2 (patch)
tree64004f0a76ad74c3b801d2b6a5275fc692068ec7
parentcdeb10b5cdba9b74ed78d04fb596a0abd2e6e467 (diff)
downloadyoutube-dl-559e370f44fd77db1f5b2f4f6a83beaab0848bf2.tar.gz
youtube-dl-559e370f44fd77db1f5b2f4f6a83beaab0848bf2.tar.xz
youtube-dl-559e370f44fd77db1f5b2f4f6a83beaab0848bf2.zip
[vimeo] Proper warning when password is required (Fixes #2053)
In player. URLs, the password warning is different.
-rw-r--r--youtube_dl/extractor/vimeo.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/youtube_dl/extractor/vimeo.py b/youtube_dl/extractor/vimeo.py
index 05e1aa1f2..d832e45d4 100644
--- a/youtube_dl/extractor/vimeo.py
+++ b/youtube_dl/extractor/vimeo.py
@@ -179,6 +179,10 @@ class VimeoIE(InfoExtractor):
             else:
                 raise ExtractorError(u'Unable to extract info section',
                                      cause=e)
+        else:
+            if config.get('view') == 4:
+                self._verify_video_password(url, video_id, webpage)
+                return self._real_extract(url)
 
         # Extract title
         video_title = config["video"]["title"]