Add python 3 support

This commit is contained in:
jmartin 2016-03-29 13:09:20 +02:00
parent affd086e53
commit 589b2b76b4
1 changed files with 1 additions and 1 deletions

View File

@ -3,10 +3,10 @@
from trytond.pool import PoolMeta
__all__ = ['Model']
__metaclass__ = PoolMeta
class Model:
__metaclass__ = PoolMeta
__name__ = 'ir.model'
@classmethod