fix encoding error to get history for accounts with special chars in name

This commit is contained in:
Romain Bignon 2013-04-10 17:09:16 +02:00
commit 83987f5b2e

View file

@ -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