diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-11-03 21:09:24 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-11-03 21:09:24 +0600 |
commit | bfdf891fd36811909aa5d83dc0614eacbb634fcf (patch) | |
tree | f1eb5291265335856cbc1b9ee6ccb5059070b712 /youtube_dl/extractor | |
parent | 3fa3ff1bc36aaf82ac0a5e880304cb7aae217b9a (diff) |
[vimeo] Fix non-ASCII album passwords
Diffstat (limited to 'youtube_dl/extractor')
-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 46fb36f21..b608740b8 100644 --- a/youtube_dl/extractor/vimeo.py +++ b/youtube_dl/extractor/vimeo.py @@ -489,7 +489,7 @@ class VimeoChannelIE(VimeoBaseInfoExtractor): token, vuid = self._extract_xsrft_and_vuid(webpage) fields['token'] = token fields['password'] = password - post = urlencode_postdata(fields) + post = urlencode_postdata(encode_dict(fields)) password_path = self._search_regex( r'action="([^"]+)"', login_form, 'password URL') password_url = compat_urlparse.urljoin(page_url, password_path) |