diff --git a/modules/hellobank/perso/accounts_list.py b/modules/hellobank/perso/accounts_list.py index 3b129207..ea5c55fe 100644 --- a/modules/hellobank/perso/accounts_list.py +++ b/modules/hellobank/perso/accounts_list.py @@ -50,7 +50,7 @@ class AccountsList(BasePage): id_famille = famille['idFamilleCompte'] for compte in famille['compte']: account = Account() - account.label = u''+compte['libellePersoProduit'] + account.label = unicode(compte['libellePersoProduit'] or compte['libelleProduit']) account.currency = account.get_currency(compte['devise']) account.balance = Decimal(str(compte['soldeDispo'])) account.coming = Decimal(str(compte['soldeAVenir']))