This commit is contained in:
Jens Timmerman 2020-09-13 18:11:58 +02:00
parent 4a6d45c8a0
commit 2c249941fc
2 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ class Authenticator(dns_common.DNSAuthenticator):
def _get_dns_entry(self, domain, validation_name, validation):
# transip api expects the name record without the domain part at the end
if validation_name.endswith(domain):
validation_name = validation.name[:-len(domain)].strip('.')
validation_name = validation_name[:-len(domain)].strip('.')
return DnsEntry(validation_name, self.ttl, 'TXT', validation)
def _get_transip_client(self):

View File

@ -1,7 +1,7 @@
from setuptools import setup
from setuptools import find_packages
version = "1.0.0"
version = "1.1.0"
install_requires = [
"acme>=0.29.0",