Add py3 support

This commit refs #1277
This commit is contained in:
Sergio Morillo 2016-08-19 18:08:06 +02:00
parent 651f9a166f
commit 7e0e431bf6
1 changed files with 1 additions and 2 deletions

View File

@ -3,13 +3,12 @@
from trytond.model import fields
from trytond.pool import PoolMeta
__metaclass__ = PoolMeta
__all__ = ['Party']
class Party:
__name__ = 'party.party'
__metaclass__ = PoolMeta
customer_to_invoice = fields.Property(
fields.Many2One('party.party', 'Customer to invoice'))