Commit d5efb05f authored by Ben Schumacher's avatar Ben Schumacher

Fix typo in dns_update.py.

parent 92c7815d
...@@ -239,7 +239,7 @@ def get_custom_records(domain, additional_records, env): ...@@ -239,7 +239,7 @@ def get_custom_records(domain, additional_records, env):
if isinstance(value, str): if isinstance(value, str):
values = [("A", value)] values = [("A", value)]
if value == "local" and env.get("PUBLIC_IPV6"): if value == "local" and env.get("PUBLIC_IPV6"):
values.appnd( ("AAAA", value) ) values.append( ("AAAA", value) )
# A mapping creates multiple records. # A mapping creates multiple records.
elif isinstance(value, dict): elif isinstance(value, dict):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment