Migrate to py3

This commit is contained in:
Raimon Esteve 2018-09-15 18:09:41 +02:00
parent 15db52047c
commit 1f1269caa6

View file

@ -3,10 +3,10 @@
# the full copyright notices and license terms.
from trytond.pool import Pool
from .company import *
from . import company
def register():
Pool.register(
Company,
company.Company,
module='jasper_reports_options', type_='model')