diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-07-14 22:36:30 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-07-14 22:36:30 +0600 |
commit | f8da79f828637757889f3f35d7adfa9aabbfc721 (patch) | |
tree | c95160001699c868f5157300e6f4839bab11bff2 /youtube_dl/extractor/vimeo.py | |
parent | 9750e7d70eed92a6b05637465698cdd30e87a44c (diff) |
[extractor/common] Improve _form_hidden_inputs and rename to _hidden_inputs
Diffstat (limited to 'youtube_dl/extractor/vimeo.py')
-rw-r--r-- | youtube_dl/extractor/vimeo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/vimeo.py b/youtube_dl/extractor/vimeo.py index d63c03183..10d6745af 100644 --- a/youtube_dl/extractor/vimeo.py +++ b/youtube_dl/extractor/vimeo.py @@ -452,7 +452,7 @@ class VimeoChannelIE(InfoExtractor): password = self._downloader.params.get('videopassword', None) if password is None: raise ExtractorError('This album is protected by a password, use the --video-password option', expected=True) - fields = self._form_hidden_inputs(login_form) + fields = self._hidden_inputs(login_form) token = self._search_regex(r'xsrft[\s=:"\']+([^"\']+)', webpage, 'login token') fields['token'] = token fields['password'] = password |