From: Stefan Schantl Date: Thu, 28 Aug 2014 18:44:27 +0000 (+0200) Subject: Fix typo in DynDNS2 proto response code. X-Git-Tag: 005~22^2~1 X-Git-Url: http://git.ipfire.org/?p=ddns.git;a=commitdiff_plain;h=af97e36995ce5ceedad1affd6f609d7ec946dea3 Fix typo in DynDNS2 proto response code. --- 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."))