fix encoding error to get history for accounts with special chars in name
This commit is contained in:
parent
fcd042b453
commit
83987f5b2e
1 changed files with 1 additions and 1 deletions
|
|
@ -136,7 +136,7 @@ class ProAccountsPage(AccountsPage):
|
|||
args = {}
|
||||
|
||||
for i, key in enumerate(self.ARGS):
|
||||
args[key] = l[self.ARGS.index(key)]
|
||||
args[key] = unicode(l[self.ARGS.index(key)]).encode(self.browser.ENCODING)
|
||||
|
||||
return url, args
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue