[vimeo] Fix non-ASCII album passwords
This commit is contained in:
parent
3fa3ff1bc3
commit
bfdf891fd3
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue