Fix conversion warning
This commit is contained in:
parent
6c49775896
commit
16f6fc349e
1 changed files with 1 additions and 1 deletions
|
|
@ -59,7 +59,7 @@ class AccountsList(BasePage):
|
||||||
# TODO: no idea abount how proxy account are displayed
|
# TODO: no idea abount how proxy account are displayed
|
||||||
for a in self.document.xpath('//a[@class="mainclic"]'):
|
for a in self.document.xpath('//a[@class="mainclic"]'):
|
||||||
account = Account()
|
account = Account()
|
||||||
account.currency = 'EUR'
|
account.currency = u'EUR'
|
||||||
account.id = unicode(a.find('span[@class="account-number"]').text)
|
account.id = unicode(a.find('span[@class="account-number"]').text)
|
||||||
account._id = account.id
|
account._id = account.id
|
||||||
account.label = unicode(a.find('span[@class="title"]').text)
|
account.label = unicode(a.find('span[@class="title"]').text)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue