Uncaught syntax error

This commit is contained in:
Neshura 2022-11-27 18:50:01 +01:00
parent 439716ed67
commit 2b0dae763b
No known key found for this signature in database
GPG key ID: ACDF5B6EBECF6B0A

View file

@ -64,7 +64,7 @@ def main():
if fullname in dns_names['A']: if fullname in dns_names['A']:
new_dnsrecords = {"name": fullname, "type": "A", "content": ip_address_new} new_dnsrecords = {"name": fullname, "type": "A", "content": ip_address_new}
print(f"Sending request {new_dnsrecords}") print(f"Sending request {new_dnsrecords}")
try; try:
r = cf.zones.dns_records.patch(zone_id, dns_record_id, data=new_dnsrecords) r = cf.zones.dns_records.patch(zone_id, dns_record_id, data=new_dnsrecords)
print(r) print(r)
except: except: