aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/vimeo.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-11-03 21:09:24 +0600
committerSergey M․ <dstftw@gmail.com>2015-11-03 21:09:24 +0600
commitbfdf891fd36811909aa5d83dc0614eacbb634fcf (patch)
treef1eb5291265335856cbc1b9ee6ccb5059070b712 /youtube_dl/extractor/vimeo.py
parent3fa3ff1bc36aaf82ac0a5e880304cb7aae217b9a (diff)
downloadyoutube-dl-bfdf891fd36811909aa5d83dc0614eacbb634fcf.tar.xz
[vimeo] Fix non-ASCII album passwords
Diffstat (limited to 'youtube_dl/extractor/vimeo.py')
-rw-r--r--youtube_dl/extractor/vimeo.py2
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)