[TYPO] Typo on tooltip of payment columns

bzr revid: jke@openerp.com-20140305163737-dd26k3t4hi0ng93g
This commit is contained in:
Kersten Jeremy 2014-03-05 17:37:37 +01:00
parent b651a86340
commit f7058f9b64
1 changed files with 3 additions and 6 deletions

View File

@ -9,14 +9,11 @@ class AccountPaymentConfig(osv.TransientModel):
_columns = {
'module_payment_paypal': fields.boolean(
'Manage Payments Using Paypal',
help='Blahblahblah\n'
'-It installs the module payment_paypal.'),
help='-It installs the module payment_paypal.'),
'module_payment_ogone': fields.boolean(
'Manage Payments Using Ogone',
help='Blahblahblah\n'
'-It installs the module payment_ogone.'),
help='-It installs the module payment_ogone.'),
'module_payment_adyen': fields.boolean(
'Manage Payments Using Adyen',
help='Blahblahblah\n'
'-It installs the module payment_adyen.'),
help='-It installs the module payment_adyen.'),
}