From 7e54c453642ea5c95c113496e620b71d4209802c Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Sun, 9 Nov 2014 19:01:34 +0100 Subject: [PATCH] tune RR formatting --- zonemaker/zone.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zonemaker/zone.py b/zonemaker/zone.py index 1999ddc..e63d943 100644 --- a/zonemaker/zone.py +++ b/zonemaker/zone.py @@ -121,7 +121,7 @@ class Zone: if TTL is None: TTL = self._other_TTL # be done - return "{0}\t{1}\t{2}\t{3}".format(self.abs_hostname(owner), TTL, recordType, data) + return "{0:<31} {1:<7} {2:<7} {3}".format(self.abs_hostname(owner), TTL, recordType, data) def abs_hostname(self, name): if name.endswith('.'): -- 2.30.2