From 6f439c917b88f999a00ba37668dbcbeb1a8a8226 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Wed, 19 Jun 2019 20:40:19 +0200 Subject: [PATCH] Use the new disable_check arg in the acme_tiny interface --- src/yunohost/certificate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/yunohost/certificate.py b/src/yunohost/certificate.py index 4235d522d..a4a31055d 100644 --- a/src/yunohost/certificate.py +++ b/src/yunohost/certificate.py @@ -566,7 +566,7 @@ def _fetch_and_enable_new_certificate(domain, staging=False, no_checks=False): domain_csr_file, WEBROOT_FOLDER, log=logger, - no_checks=no_checks, + disable_check=no_checks, CA=certification_authority) except ValueError as e: if "urn:acme:error:rateLimited" in str(e):