From 9c86b8f25b47c81cca345285259c35ec05e1ebdf Mon Sep 17 00:00:00 2001 From: Florent Date: Thu, 23 Oct 2014 15:20:59 +0200 Subject: [PATCH] Better explanation for Investment class --- modules/boursorama/pages/investment.py | 4 ++-- weboob/capabilities/bank.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/boursorama/pages/investment.py b/modules/boursorama/pages/investment.py index ba4c7366..a01ffb90 100644 --- a/modules/boursorama/pages/investment.py +++ b/modules/boursorama/pages/investment.py @@ -70,8 +70,8 @@ class AccountInvestment(IsinMixin, Page): ---------------- label = StringField('Label of stocks') - code = StringField('Short code identifier of the stock') - description = StringField('Description of the stock') + code = StringField('Identifier of the stock (ISIN code)') + description = StringField('Short description of the stock') quantity = IntField('Quantity of stocks') unitprice = DecimalField('Buy price of one stock') unitvalue = DecimalField('Current value of one stock') diff --git a/weboob/capabilities/bank.py b/weboob/capabilities/bank.py index d0499a99..ece32804 100644 --- a/weboob/capabilities/bank.py +++ b/weboob/capabilities/bank.py @@ -159,8 +159,8 @@ class Investment(BaseObject): """ label = StringField('Label of stocks') - code = StringField('Short code identifier of the stock') - description = StringField('Description of the stock') + code = StringField('Identifier of the stock (ISIN code)') + description = StringField('Short description of the stock') quantity = DecimalField('Quantity of stocks') unitprice = DecimalField('Buy price of one stock') unitvalue = DecimalField('Current value of one stock')