From b385b1ddb5d2a5bc7b4c3eb3e3907c4ef80ef7b4 Mon Sep 17 00:00:00 2001 From: Basir Jamil Date: Thu, 6 Jun 2019 18:36:16 -0400 Subject: [PATCH] fixed typo --- 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 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()