From 55210ebb05cd4e9077fa324dd2619de83e6cb046 Mon Sep 17 00:00:00 2001 From: Basir Date: Mon, 29 Jul 2019 13:09:18 -0400 Subject: [PATCH] fastdns: fixed naming in AkamaiClient init --- octodns/provider/fastdns.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/octodns/provider/fastdns.py b/octodns/provider/fastdns.py index 6e9a00d..ab80882 100644 --- a/octodns/provider/fastdns.py +++ b/octodns/provider/fastdns.py @@ -34,15 +34,15 @@ class AkamaiClient(object): ''' - def __init__(self, _client_secret, _host, _access_token, _client_token): + def __init__(self, client_secret, host, access_token, client_token): - self.base = "https://" + _host + "/config-dns/v2/" + self.base = "https://" + host + "/config-dns/v2/" sess = Session() sess.auth = EdgeGridAuth( - client_token=_client_token, - client_secret=_client_secret, - access_token=_access_token + client_token=client_token, + client_secret=client_secret, + access_token=access_token ) self._sess = sess