From 43ebe72c5958b102a5dec8502081ff88adbacb1b Mon Sep 17 00:00:00 2001 From: soniafrancisNS1 Date: Wed, 15 Jul 2026 14:13:50 +0100 Subject: [PATCH 1/2] zone-export example remane the file name --- examples/zone-export.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/examples/zone-export.py b/examples/zone-export.py index 9c5a0c3..5c100c2 100644 --- a/examples/zone-export.py +++ b/examples/zone-export.py @@ -31,6 +31,7 @@ print(zone_file) # Save to a file -with open("example.com.txt", "w") as f: +output_file = f"{zone_name}.txt" +with open(output_file, "w") as f: f.write(zone_file) -print("Zone file saved to example.com.txt") +print(f"Zone file saved to {output_file}") From 6ff14bb7fd1320317b09cd95f7d844bbb8dd2562 Mon Sep 17 00:00:00 2001 From: soniafrancisNS1 Date: Wed, 15 Jul 2026 14:26:33 +0100 Subject: [PATCH 2/2] Rename zone-export.py to zone-export-bind.py --- examples/{zone-export.py => zone-export-bind.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename examples/{zone-export.py => zone-export-bind.py} (100%) diff --git a/examples/zone-export.py b/examples/zone-export-bind.py similarity index 100% rename from examples/zone-export.py rename to examples/zone-export-bind.py