Browse Source

MIG configuration helper

12.0-mig-module_prototyper_last
Angel Moya Pardo 7 years ago
committed by sebalix
parent
commit
2b1868a704
  1. 1
      configuration_helper/README.rst
  2. 4
      configuration_helper/__manifest__.py
  3. 2
      configuration_helper/models/config.py

1
configuration_helper/README.rst

@ -55,3 +55,4 @@ Contributors
* Yannick Vaucher <yannick.vaucher@camptocamp.com>
* David BEAL <david.beal@akretion.com>
* Sébastien BEAU <sebastien.beau@akretion.com>
* Angel Moya <angel.moya@pesol.es>

4
configuration_helper/__manifest__.py

@ -2,7 +2,7 @@
# © 2014 David BEAL Akretion
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{'name': 'Configuration Helper',
'version': '9.0.1.0.0',
'version': '10.0.1.0.0',
'author': "Akretion,Odoo Community Association (OCA)",
'maintainer': 'Akretion',
'category': 'server',
@ -11,7 +11,7 @@
'website': 'http://www.akretion.com/',
'data': [],
'tests': [],
'installable': False,
'installable': True,
'auto_install': False,
'license': 'AGPL-3',
'application': False,

2
configuration_helper/models/config.py

@ -4,7 +4,7 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
import re
from openerp import api, fields, models
from odoo import api, fields, models
class AbstractConfigSettings(models.AbstractModel):

Loading…
Cancel
Save