Add python 3 support

This commit is contained in:
jmartin 2016-03-29 13:09:19 +02:00
parent 6bb7d5f450
commit a57628e369

View file

@ -5,12 +5,12 @@
from trytond.model import ModelView, fields
from trytond.pool import Pool, PoolMeta
__metaclass__ = PoolMeta
__all__ = ['Activity']
class Activity:
'Activity'
__metaclass__ = PoolMeta
__name__ = "activity.activity"
calendar_event = fields.Many2One('calendar.event', 'Event')