From: Christoph Egger Date: Thu, 27 Oct 2016 22:50:54 +0000 (+0200) Subject: Add the final dot at the right place X-Git-Url: https://git.siccegge.de//index.cgi?p=tooling%2Fletool.git;a=commitdiff_plain;h=7648e974df223615892ea45d1f89eb4f5f689065 Add the final dot at the right place --- diff --git a/bin/addrecord b/bin/addrecord index cf2c573..29e2c7f 100755 --- a/bin/addrecord +++ b/bin/addrecord @@ -62,7 +62,7 @@ class Addrecord: sys.stderr.write("Not a valid ACME challenge record: '%s'\n" % value) return 2 - records = [ "{0:<35s}.\tIN\tTXT\t\"{1}\"\n".format("_acme-challenge.%s" % host, value) ] + records = [ "{0:<35s}\tIN\tTXT\t\"{1}\"\n".format("_acme-challenge.%s." % host, value) ] self._update_records('acme', host, records) print("OK") return 0