From d11038b7b33e0630b0dc115655b1aa49608aa9ec Mon Sep 17 00:00:00 2001 From: missytake Date: Thu, 19 Dec 2024 14:17:37 +0100 Subject: [PATCH] DNS: out() instead of print() --- cmdeploy/src/cmdeploy/dns.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmdeploy/src/cmdeploy/dns.py b/cmdeploy/src/cmdeploy/dns.py index ead1c895..552d96ba 100644 --- a/cmdeploy/src/cmdeploy/dns.py +++ b/cmdeploy/src/cmdeploy/dns.py @@ -54,7 +54,7 @@ def check_full_zone(sshexec, remote_data, out, zonefile, all) -> int: out.red("Please set required DNS entries at your DNS provider:\n") for line in required_diff: out(line) - print() + out("") returncode = 1 if recommended_diff and (all or not required_diff): out("WARNING: these recommended DNS entries are not set:\n")