1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00

fixed typo

This commit is contained in:
Basir Jamil
2019-06-06 18:36:16 -04:00
parent 6afab8c90a
commit b385b1ddb5

View File

@@ -39,7 +39,7 @@ class AkamaiClient(object):
def getZone(self, name): def getZone(self, name):
path = urljoin(self.base, name) path = urljoin(self.base, name)
result = self.sess.get(path) result = self._sess.get(path)
return result.json() return result.json()