From 0e688141575b741b10f159653954b2b1075ab4de Mon Sep 17 00:00:00 2001 From: bigsk Date: Fri, 24 Feb 2023 17:37:29 +0000 Subject: [PATCH] Fixed an incorrect prompt --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 2069ca9..afed13b 100644 --- a/main.py +++ b/main.py @@ -116,7 +116,7 @@ class AliDDNS(object): self.__client.do_action_with_exception(update_v6) print('Your ipv6 record has been updated successfully.') except Exception as e: - print("Failed to update your ipv4 record,", e) + print("Failed to update your ipv6 record,", e) if __name__ == "__main__": dns = AliDDNS("MainDomain.com", "SubDomain", "AccessKey ID", "AccessKey Secret")