From c78a23cbbde76fafa52abb8beb4c24c1fbc958d1 Mon Sep 17 00:00:00 2001 From: Alejandro Santillan Date: Fri, 4 Aug 2023 21:00:38 +0000 Subject: [PATCH] [FIX] website_pre_loader_style: Warning raised by typo in manifest key: "license" The word 'license' can be written "licence" too but odoo expects "license". The fallowing warning was being raised, even when the module was not installed. WARNING ? odoo.modules.module: Missing `license` key in manifest for 'website_pre_loader_style', defaulting to LGPL --- website_pre_loader_style/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website_pre_loader_style/__manifest__.py b/website_pre_loader_style/__manifest__.py index 996ee8633..5caab14e0 100644 --- a/website_pre_loader_style/__manifest__.py +++ b/website_pre_loader_style/__manifest__.py @@ -47,7 +47,7 @@ ] }, 'images': ['static/description/banner.jpg'], - 'licence': 'AGPL-3', + 'license': 'AGPL-3', 'installable': True, 'auto_install': False, 'application': False,