From 975fba4d421aead0ad4b498ba1a46535255e785c Mon Sep 17 00:00:00 2001 From: Timothy Miller Date: Mon, 1 Mar 2021 00:18:37 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=AA=B5=20Reduced=20duplicate=20logs=20[yo?= =?UTF-8?q?ur=20SD=20card(s)=20will=20thank=20me]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cloudflare-ddns.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cloudflare-ddns.py b/cloudflare-ddns.py index 235d615..3165922 100755 --- a/cloudflare-ddns.py +++ b/cloudflare-ddns.py @@ -54,7 +54,7 @@ def getIPs(): except Exception: if not shown_ipv4_warning: shown_ipv4_warning = True - print("😨 Warning: IPv4 not detected.") + print("😨 Warning: IPv4 not detected") deleteEntries("A") try: aaaa = requests.get("https://[2606:4700:4700::1111]/cdn-cgi/trace").text.split("\n") @@ -63,7 +63,7 @@ def getIPs(): except Exception: if not shown_ipv6_warning: shown_ipv6_warning = True - print("😨 Warning: IPv6 not detected.") + print("😨 Warning: IPv6 not detected") deleteEntries("AAAA") ips = [] if(a is not None):