commit 4219572de9b6c433545fe8a6c3e65c3925f11c05
parent 3b7f4015836c6757b7a999e153f3b9bd1b82216b
Author: Christian Grothoff <christian@grothoff.org>
Date: Thu, 23 May 2019 15:10:03 +0200
answers
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ascension/ascension.py b/ascension/ascension.py
@@ -597,10 +597,10 @@ class Ascender():
# ("." is not a zone-cut in DNS, but always in GNS).
for name in self.zone.nodes.keys():
subzones = str(name).split('.')
- # FIXME Christian: For some reason this fails spectacularly
+ # FIXME Christian: For some reason this fails spectacularly # how exactly?
for i in range(1, len(subzones)-1):
subdomain = ".".join(subzones[i:])
- # FIXME Christian this seems superfluous
+ # FIXME Christian this seems superfluous # that depends, does subzones already contain .domain?
zonename = "%s.%s" % (subdomain, self.domain)
ttl = self.minimum # new record, cannot use existing one, might want to use larger value
if self.subzonedict.get(zonename) is None: