From ca3fa92c69a6f0a10a4e35f6d41c426b1098c41f Mon Sep 17 00:00:00 2001 From: Angel Moya Pardo Date: Thu, 30 Mar 2017 12:26:27 +0200 Subject: [PATCH] MIG configuration helper --- configuration_helper/README.rst | 1 + configuration_helper/__manifest__.py | 4 ++-- configuration_helper/models/config.py | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/configuration_helper/README.rst b/configuration_helper/README.rst index 710ec7501..7592001f1 100644 --- a/configuration_helper/README.rst +++ b/configuration_helper/README.rst @@ -55,3 +55,4 @@ Contributors * Yannick Vaucher * David BEAL * Sébastien BEAU +* Angel Moya diff --git a/configuration_helper/__manifest__.py b/configuration_helper/__manifest__.py index 28ad673ec..37552c3d2 100644 --- a/configuration_helper/__manifest__.py +++ b/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, diff --git a/configuration_helper/models/config.py b/configuration_helper/models/config.py index 1eb51af88..27debf9a7 100644 --- a/configuration_helper/models/config.py +++ b/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):