Reviewers: ,
Please review this at http://codereview.tryton.org/179001/ Affected files: M __init__.py M tests/__init__.py Index: __init__.py =================================================================== --- a/__init__.py +++ b/__init__.py @@ -1,6 +1,6 @@ #This file is part of Tryton. The COPYRIGHT file at the top level of #this repository contains the full copyright notices and license terms. -from party import * -from payment_term import * -from invoice import * +from .party import * +from .payment_term import * +from .invoice import * Index: tests/__init__.py =================================================================== --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1,4 +1,4 @@ #This file is part of Tryton. The COPYRIGHT file at the top level of #this repository contains the full copyright notices and license terms. -from test_account_invoice_history import suite +from .test_account_invoice_history import suite -- [email protected] mailing list
