dns/ddclient: whitespace and changelog

This commit is contained in:
Franco Fichtner
2024-08-20 12:19:54 +02:00
parent 8af0c12f9c
commit b4dc19ee78
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -9,6 +9,7 @@ Plugin Changelog
1.23
* Add dashboard widget
* Refactored IP matching (contributed by Rob van Oostenrijk)
1.22
@@ -82,7 +82,7 @@ def checkip(service, proto='https', timeout='10', interface=None):
if interface is not None:
params.append("--interface")
params.append(interface)
url = checkip_service_list[service] % proto
url = checkip_service_list[service] % proto
params.append(url)
return extract_address(urlparse(url).hostname,
subprocess.run(params, capture_output=True, text=True).stdout)