Add python 3 support

This commit is contained in:
jmartin 2016-03-29 12:00:49 +02:00
parent 3cddad7ceb
commit 40b6da17be
1 changed files with 1 additions and 2 deletions

View File

@ -5,11 +5,10 @@
from trytond.pool import PoolMeta
__all__ = ['PurchaseRequest']
__metaclass__ = PoolMeta
class PurchaseRequest:
'Purchase Request'
__metaclass__ = PoolMeta
__name__ = 'purchase.request'
@classmethod