From e4c47552713d253c52d5d3b85e5e58573644ae69 Mon Sep 17 00:00:00 2001 From: helgeerbe Date: Thu, 7 Oct 2021 14:59:02 +0200 Subject: [PATCH] typos in debug messages --- certbot_dns_ionos/dns_ionos.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot_dns_ionos/dns_ionos.py b/certbot_dns_ionos/dns_ionos.py index 2574c89..8b09b22 100644 --- a/certbot_dns_ionos/dns_ionos.py +++ b/certbot_dns_ionos/dns_ionos.py @@ -125,7 +125,7 @@ class _ionosClient(object): raise errors.PluginError( "HTTP Error during request. Unknown type {0}".format(type) ) - logger.debug("API REquest to URL: %s", url) + logger.debug("API request to URL: %s", url) if resp.status_code != 200: content = json.loads(resp.content)[0] # on error content is array with 1 element error_msg = resp.reason + " " + content['message']