From deea3f970503340b2b6abdb9e3112ed26fbec1d9 Mon Sep 17 00:00:00 2001 From: Yannick Vaucher Date: Fri, 28 Apr 2017 17:21:09 +0200 Subject: [PATCH] Migrate configuration_helper to 10.0 --- configuration_helper/__manifest__.py | 4 ++-- configuration_helper/models/config.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configuration_helper/__manifest__.py b/configuration_helper/__manifest__.py index 28ad673ecf1..37552c3d239 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 1eb51af88b9..27debf9a711 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):