Reviewers: ,
Please review this at http://codereview.tryton.org/174003/ Affected files: M __init__.py M tests/__init__.py Index: __init__.py =================================================================== --- a/__init__.py +++ b/__init__.py @@ -1,7 +1,7 @@ #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 payment_term import * -from invoice import * -from party import * -from account import * +from .payment_term import * +from .invoice import * +from .party import * +from .account 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 import suite +from .test_account_invoice import suite -- [email protected] mailing list
