From 9e68bea156571a0de585f202da8c00aaf2505160 Mon Sep 17 00:00:00 2001 From: Aji Mufti <39007244+mftzk@users.noreply.github.com> Date: Tue, 30 Jul 2024 13:34:23 +0700 Subject: [PATCH] Update examples/dns/record.py Co-authored-by: Jacob Bednarz --- examples/dns/record.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/dns/record.py b/examples/dns/record.py index 2c1c2ae9470..346662677ea 100644 --- a/examples/dns/record.py +++ b/examples/dns/record.py @@ -14,7 +14,7 @@ # create dns using defined driver -dns = client.dns.records.create( +record = client.dns.records.create( zone_id=cloudflare_zone_id, type='CNAME', name=alias_name, @@ -23,4 +23,4 @@ ) # print output -print(dns) \ No newline at end of file +print(record) \ No newline at end of file