diff options
-rw-r--r-- | acme_dns_tiny.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/acme_dns_tiny.py b/acme_dns_tiny.py index 2be4d73..6784eb8 100644 --- a/acme_dns_tiny.py +++ b/acme_dns_tiny.py @@ -221,7 +221,7 @@ class ACME: log.info(' - Registered a new account: "%s"', kid) elif sreq.code == 200: log.debug(' - Account is already registered: "%s"', kid) - sreq = self.sreq(self.jws_header['kid'], {}).map + sreq = self.sreq(self.jws_header['kid'], {}) if contacts and (set(contacts) != set(sreq.map['contact'])): self.sreq(self.jws_header["kid"], account_request) log.info(' - Account updated with latest contact information.') |