From 34cd9e62e7c80b07ba883e3edb53d5b5bdd7a464 Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Thu, 11 Jun 2020 12:46:30 +0200 Subject: [PATCH] Fixed typo in url --- src/ddns_update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ddns_update.py b/src/ddns_update.py index 86b8ea6..8c6c370 100755 --- a/src/ddns_update.py +++ b/src/ddns_update.py @@ -33,7 +33,7 @@ def response_successful(response_text): def ddns_update(host, key, ip): - url = f"https://dyndns.strato_.com/nic/update?hostname={host}&myip={ip}" + url = f"https://dyndns.strato.com/nic/update?hostname={host}&myip={ip}" try: response = requests.get(url, auth=(host, key), timeout=3)