Add python 3 support

This commit is contained in:
jmartin 2016-03-29 12:00:17 +02:00
parent df26ab26e7
commit 273219ac06
1 changed files with 1 additions and 1 deletions

View File

@ -5,9 +5,9 @@ from trytond.model import fields
from trytond.pool import PoolMeta
__all__ = ['PaymentType']
__metaclass__ = PoolMeta
class PaymentType:
__metaclass__ = PoolMeta
__name__ = 'account.payment.type'
gateway = fields.Many2One('account.payment.gateway', 'Gateway')