diff --git a/account_banking_make_deposit/__init__.py b/account_banking_make_deposit/__init__.py
index 6a05c7422..b8e9953af 100644
--- a/account_banking_make_deposit/__init__.py
+++ b/account_banking_make_deposit/__init__.py
@@ -19,7 +19,7 @@
# along with this program. If not, see
#
##############################################################################
-import wizard
-import report
-import account_banking_make_deposit
-import account_move_line
+from . import wizard
+from . import report
+from . import account_banking_make_deposit
+from . import account_move_line
diff --git a/account_banking_make_deposit/report/__init__.py b/account_banking_make_deposit/report/__init__.py
index 40b7c65ae..278eb437c 100644
--- a/account_banking_make_deposit/report/__init__.py
+++ b/account_banking_make_deposit/report/__init__.py
@@ -19,4 +19,4 @@
# along with this program. If not, see
#
##############################################################################
-import deposit_ticket
+from . import deposit_ticket
diff --git a/account_banking_make_deposit/wizard/__init__.py b/account_banking_make_deposit/wizard/__init__.py
index 300ed9003..aec4a9c16 100644
--- a/account_banking_make_deposit/wizard/__init__.py
+++ b/account_banking_make_deposit/wizard/__init__.py
@@ -19,4 +19,4 @@
# along with this program. If not, see
#
##############################################################################
-import add_deposit_items
+from . import add_deposit_items
diff --git a/account_banking_reconciliation/__init__.py b/account_banking_reconciliation/__init__.py
index e17e1b3a7..38baff3d1 100644
--- a/account_banking_reconciliation/__init__.py
+++ b/account_banking_reconciliation/__init__.py
@@ -19,7 +19,6 @@
# along with this program. If not, see
#
##############################################################################
-
-import account_banking_reconciliation
-import account_move_line
-import report
+from . import account_banking_reconciliation
+from . import account_move_line
+from . import report
diff --git a/account_banking_reconciliation/report/__init__.py b/account_banking_reconciliation/report/__init__.py
index 22db7be05..d04f65e5c 100644
--- a/account_banking_reconciliation/report/__init__.py
+++ b/account_banking_reconciliation/report/__init__.py
@@ -19,5 +19,4 @@
# along with this program. If not, see
#
##############################################################################
-
-import reconciliation
+from . import reconciliation