From 8e76f6de1e2a540892d808bf27cbdbe24b48d765 Mon Sep 17 00:00:00 2001 From: Daniel Langbein Date: Tue, 28 Mar 2023 18:23:37 +0200 Subject: [PATCH] minor --- src/netcup_dns/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/netcup_dns/main.py b/src/netcup_dns/main.py index 553a3f8..b690040 100644 --- a/src/netcup_dns/main.py +++ b/src/netcup_dns/main.py @@ -45,7 +45,7 @@ def main(): if update_record_destination(api, domain, hostname, type_, destination=destination): print(f'Set {hostname}.{domain} {type_} record to {destination}') else: - print(f'The {hostname}.{domain} {type_} record points already to {destination}.') + print(f'The {hostname}.{domain} {type_} record points already to {destination}') else: raise Exception(f'DNS record type {type_} is not supported.')