diff --git a/hr_employee_firstname/__init__.py b/hr_employee_firstname/__init__.py index 118a0621721..c0d9f3d12f7 100644 --- a/hr_employee_firstname/__init__.py +++ b/hr_employee_firstname/__init__.py @@ -1,4 +1,4 @@ # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). from . import models -from .init_hook import post_init_hook +from .hooks import post_init_hook diff --git a/hr_employee_firstname/__manifest__.py b/hr_employee_firstname/__manifest__.py index 68585036ce4..46be059cfbf 100644 --- a/hr_employee_firstname/__manifest__.py +++ b/hr_employee_firstname/__manifest__.py @@ -8,7 +8,7 @@ "Fekete Mihai (Forest and Biomass Services Romania), " "Onestein, " "Odoo Community Association (OCA)", - "maintainer": "Savoir-faire Linux", + "maintainers": ["Savoir-faire Linux", "luisg123v"], "website": "https://github.com/OCA/hr", "license": "AGPL-3", "category": "Human Resources", diff --git a/hr_employee_firstname/init_hook.py b/hr_employee_firstname/hooks.py similarity index 100% rename from hr_employee_firstname/init_hook.py rename to hr_employee_firstname/hooks.py