diff --git a/account_move_template/__init__.py b/account_move_template/__init__.py index c60d936a..0b6dc776 100644 --- a/account_move_template/__init__.py +++ b/account_move_template/__init__.py @@ -18,6 +18,6 @@ # along with this program. If not, see . # ############################################################################## -import account_document_template -import account_move_template -import wizard +from . import account_document_template +from . import account_move_template +from . import wizard diff --git a/account_move_template/wizard/__init__.py b/account_move_template/wizard/__init__.py index 3a53db9e..7ba1ace6 100644 --- a/account_move_template/wizard/__init__.py +++ b/account_move_template/wizard/__init__.py @@ -18,4 +18,4 @@ # along with this program. If not, see . # ############################################################################## -import select_template +from . import select_template