Browse Source

[FIX] odoo_picking_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_picking_order_line_views', defaulting to LGPL
pull/268/head
Alejandro Santillan 2 years ago
parent
commit
1678449f66
  1. 2
      odoo_picking_order_line_views/__manifest__.py

2
odoo_picking_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': ['base', 'sale', 'stock', 'sale_management', 'purchase'],
'data': [
'views/in_operation_line_views.xml',

Loading…
Cancel
Save