From af97e36995ce5ceedad1affd6f609d7ec946dea3 Mon Sep 17 00:00:00 2001 From: Stefan Schantl Date: Thu, 28 Aug 2014 20:44:27 +0200 Subject: [PATCH] Fix typo in DynDNS2 proto response code. --- src/ddns/providers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ddns/providers.py b/src/ddns/providers.py index 766ce64..151d6a3 100644 --- a/src/ddns/providers.py +++ b/src/ddns/providers.py @@ -214,7 +214,7 @@ class DDNSProtocolDynDNS2(object): # Handle error codes. if output == "badauth": raise DDNSAuthenticationError - elif output == "aduse": + elif output == "abuse": raise DDNSAbuseError elif output == "notfqdn": raise DDNSRequestError(_("No valid FQDN was given.")) -- 2.39.2