From f21915308850a7402d75b5e28a6d8647ec4f8321 Mon Sep 17 00:00:00 2001 From: Basir Jamil Date: Thu, 6 Jun 2019 14:49:58 -0400 Subject: [PATCH] fixed call to auth fxn --- octodns/provider/fastdns.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/octodns/provider/fastdns.py b/octodns/provider/fastdns.py index 94c049e..e8fb35c 100644 --- a/octodns/provider/fastdns.py +++ b/octodns/provider/fastdns.py @@ -39,7 +39,7 @@ class AkamaiProvider(BaseProvider): self.log.debug('__init__: id=%s, ') super(AkamaiProvider, self).__init__(id, *args, **kwargs) - self._authenticate(self, client_secret, host, access_token, client_token) + self._authenticate(client_secret, host, access_token, client_token) def _authenticate(self, client_secret, host, access_token, client_token):