Commit 699923d6 authored by Joshua Tauberer's avatar Joshua Tauberer

Merge pull request #166 from benschumacher/master

Fix typo in dns_update.py.
parents 43fe2fe2 d5efb05f
......@@ -239,7 +239,7 @@ def get_custom_records(domain, additional_records, env):
if isinstance(value, str):
values = [("A", value)]
if value == "local" and env.get("PUBLIC_IPV6"):
values.appnd( ("AAAA", value) )
values.append( ("AAAA", value) )
# A mapping creates multiple records.
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