From 7648e974df223615892ea45d1f89eb4f5f689065 Mon Sep 17 00:00:00 2001 From: Christoph Egger Date: Fri, 28 Oct 2016 00:50:54 +0200 Subject: [PATCH] Add the final dot at the right place --- bin/addrecord | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.2