From: Michael Tremer Date: Thu, 5 Dec 2019 15:38:34 +0000 (+0000) Subject: location-exporter: ipset: Add line break after header X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a4ba47626015fea7bd2a2d3e3047fea337760fe4;p=people%2Fsennis%2Flibloc.git location-exporter: ipset: Add line break after header Signed-off-by: Michael Tremer --- diff --git a/src/python/location-exporter.in b/src/python/location-exporter.in index 28f761a..1e3be26 100644 --- a/src/python/location-exporter.in +++ b/src/python/location-exporter.in @@ -123,7 +123,7 @@ class IpsetOutputWriter(OutputWriter): suffix = "ipset" def _write_header(self, f): - h = "create %s hash:net family inet hashsize 1024 maxelem 65536" % self.name + h = "create %s hash:net family inet hashsize 1024 maxelem 65536\n" % self.name f.write(h.encode("ascii"))