Add python 3 support

This commit is contained in:
jmartin 2016-03-29 12:00:35 +02:00
parent f3f5685c08
commit f9a4d72ca4
1 changed files with 1 additions and 1 deletions

View File

@ -5,10 +5,10 @@ from trytond.model import fields
from trytond.pool import Pool, PoolMeta
__all__ = ['Work']
__metaclass__ = PoolMeta
class Work:
__metaclass__ = PoolMeta
__name__ = 'project.work'
reference = fields.Reference('Reference', selection='get_reference',
select=True)