From 4e9b0586ed7b20a8982922dca20766c91403fda5 Mon Sep 17 00:00:00 2001 From: chirac Date: Sun, 29 Jul 2018 16:45:12 +0200 Subject: [PATCH] Update models.py alignement --- machines/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machines/models.py b/machines/models.py index 6344cf91..590e3997 100644 --- a/machines/models.py +++ b/machines/models.py @@ -689,7 +689,7 @@ class DName(RevMixin, AclMixin, models.Model): @cached_property def dns_entry(self): """Returns the DNAME record for the DNS zone file.""" - return str(self.alias) + " IN DNAME " + str(self.zone) + return str(self.alias).ljust(15) + " IN DNAME " + str(self.zone) class Srv(RevMixin, AclMixin, models.Model):