mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-23 11:53:12 +00:00
Update models.py alignement
This commit is contained in:
parent
95dc427dc4
commit
4e9b0586ed
1 changed files with 1 additions and 1 deletions
|
@ -689,7 +689,7 @@ class DName(RevMixin, AclMixin, models.Model):
|
||||||
@cached_property
|
@cached_property
|
||||||
def dns_entry(self):
|
def dns_entry(self):
|
||||||
"""Returns the DNAME record for the DNS zone file."""
|
"""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):
|
class Srv(RevMixin, AclMixin, models.Model):
|
||||||
|
|
Loading…
Reference in a new issue