diff --git a/octodns/provider/fastdns.py b/octodns/provider/fastdns.py index afbbfc2..da9d3ee 100644 --- a/octodns/provider/fastdns.py +++ b/octodns/provider/fastdns.py @@ -39,7 +39,7 @@ class AkamaiClient(object): def getZone(self, name): path = urljoin(self.base, name) - result = self.sess.get(path) + result = self._sess.get(path) return result.json()