Add python 3 support
This commit is contained in:
parent
3a34d395dd
commit
ea05e18a54
2 changed files with 2 additions and 2 deletions
|
@ -9,10 +9,10 @@ from trytond.transaction import Transaction
|
|||
from trytond.pool import Pool, PoolMeta
|
||||
|
||||
__all__ = ['Account']
|
||||
__metaclass__ = PoolMeta
|
||||
|
||||
|
||||
class Account:
|
||||
__metaclass__ = PoolMeta
|
||||
__name__ = 'analytic_account.account'
|
||||
|
||||
@classmethod
|
||||
|
|
2
line.py
2
line.py
|
@ -8,10 +8,10 @@ from trytond.transaction import Transaction
|
|||
from trytond.pyson import Eval, If, Bool
|
||||
|
||||
__all__ = ['Line']
|
||||
__metaclass__ = PoolMeta
|
||||
|
||||
|
||||
class Line:
|
||||
__metaclass__ = PoolMeta
|
||||
__name__ = 'analytic_account.line'
|
||||
|
||||
@classmethod
|
||||
|
|
Loading…
Reference in a new issue