Browse Source

[FIX] odoo_sale_order_line_views: 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
'odoo_sale_order_line_views', defaulting to LGPL
pull/268/head
Alejandro Santillan 2 years ago
parent
commit
e069dbf070
  1. 2
      odoo_sale_order_line_views/__manifest__.py

2
odoo_sale_order_line_views/__manifest__.py

@ -27,7 +27,7 @@
'maintainer': 'Cybrosys Techno Solutions',
'website': "https://www.cybrosys.com",
'category': 'Sales',
'licence': 'LGPL-3',
'license': 'LGPL-3',
'depends': ['sale_management'],
'data': [
'views/quotation_line_views.xml',

Loading…
Cancel
Save