From db454b67abf56e900fefd7ce5776785b26dad0ef Mon Sep 17 00:00:00 2001 From: Dmitry Volodin Date: Fri, 17 Nov 2023 15:57:24 +0100 Subject: [PATCH] Fix --- src/gufo/acme/clients/powerdns.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gufo/acme/clients/powerdns.py b/src/gufo/acme/clients/powerdns.py index fa19bad..a6d4745 100644 --- a/src/gufo/acme/clients/powerdns.py +++ b/src/gufo/acme/clients/powerdns.py @@ -85,7 +85,8 @@ async def fulfill_dns_01( ) # Set PDNS challenge async with self._get_client() as client: - # Construct the API endpoint for updating a record in a specific zone + # Construct the API endpoint for updating + # a record in a specific zone endpoint = ( f"{self.api_url}/api/v1/servers/localhost/zones/{domain}" )