@ -3,7 +3,7 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "Let's encrypt",
"version": "9.0.1.0.0",
"version": "10.0.1.0.0",
"author": "Therp BV,"
"Tecnativa,"
"Odoo Community Association (OCA)",
@ -19,7 +19,7 @@
"demo/ir_cron.xml",
],
"post_init_hook": 'post_init_hook',
'installable': False,
'installable': True,
"external_dependencies": {
'bin': [
'openssl',
@ -3,8 +3,8 @@
# © 2016 Antonio Espinosa <antonio.espinosa@tecnativa.com>
import os
from openerp import http
from openerp.http import request
from odoo import http
from odoo.http import request
from ..models.letsencrypt import get_challenge_dir
@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
# © 2016 Therp BV <http://therp.nl>
from openerp import SUPERUSER_ID, api
from odoo import SUPERUSER_ID, api
def post_init_hook(cr, pool):
@ -8,8 +8,8 @@ import urllib2
import urlparse
import subprocess
import tempfile
from openerp import _, api, models, exceptions
from openerp.tools import config
from odoo import _, api, models, exceptions
from odoo.tools import config
DEFAULT_KEY_LENGTH = 4096
from openerp.tests.common import TransactionCase
from odoo.tests.common import TransactionCase
class TestLetsencrypt(TransactionCase):