From: Stefan Schantl Date: Mon, 5 Jan 2015 20:37:55 +0000 (+0100) Subject: spdns.de: Fix authentication. X-Git-Tag: 006~6 X-Git-Url: http://git.ipfire.org/?p=oddments%2Fddns.git;a=commitdiff_plain;h=25f39b4e437627bd1a49393280271d59ad28b86e;hp=78046ffe2187d91c61d6c2f910249b8a5be71b08 spdns.de: Fix authentication. There was a simple copy and paste issue which prevents a correct authentication with username and password against the providers API. --- diff --git a/src/ddns/providers.py b/src/ddns/providers.py index 587d5ff..bcfb088 100644 --- a/src/ddns/providers.py +++ b/src/ddns/providers.py @@ -1271,7 +1271,7 @@ class DDNSProviderSPDNS(DDNSProtocolDynDNS2, DDNSProvider): @property def password(self): - return self.get("username") or self.token + return self.get("password") or self.token class DDNSProviderStrato(DDNSProtocolDynDNS2, DDNSProvider):