From 9b0240e8ef8f7bd9f65fc8756a30464bb97852e4 Mon Sep 17 00:00:00 2001 From: Alejandro Santillan Date: Fri, 4 Aug 2023 21:00:14 +0000 Subject: [PATCH] [FIX] pos_custom_message: 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 'pos_custom_message', defaulting to LGPL --- pos_custom_message/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pos_custom_message/__manifest__.py b/pos_custom_message/__manifest__.py index 99bb1bbbc..e7d054800 100644 --- a/pos_custom_message/__manifest__.py +++ b/pos_custom_message/__manifest__.py @@ -46,7 +46,7 @@ ], }, 'images': ['static/description/banner.jpg'], - 'licence': 'AGPL-3', + 'license': 'AGPL-3', 'installable': True, 'auto_install': False, 'application': False,