From 99875a128999c5090c9359cfac1d30850ce48a02 Mon Sep 17 00:00:00 2001 From: Basir Jamil Date: Thu, 30 May 2019 18:36:31 -0700 Subject: [PATCH] fixed base class errors --- octodns/provider/fastdns.py | 7 ++++++- src/octodns | 1 + src/pip-delete-this-directory.txt | 5 +++++ 3 files changed, 12 insertions(+), 1 deletion(-) create mode 160000 src/octodns create mode 100644 src/pip-delete-this-directory.txt diff --git a/octodns/provider/fastdns.py b/octodns/provider/fastdns.py index 2a24edc..a9591d4 100644 --- a/octodns/provider/fastdns.py +++ b/octodns/provider/fastdns.py @@ -20,8 +20,13 @@ class _AkamaiRecord(object): class AkamaiProvider(BaseProvider): - pass + SUPPORTS_GEO = False + SUPPORTS_DYNAMIC = False + SUPPORTS = set(('A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SRV', + 'TXT')) + + def __init__(self, id, client_secret, host, access_token, client_token, *args, **kwargs): diff --git a/src/octodns b/src/octodns new file mode 160000 index 0000000..b57cbbb --- /dev/null +++ b/src/octodns @@ -0,0 +1 @@ +Subproject commit b57cbbb09230684552f1fa4db5fb53a921486b96 diff --git a/src/pip-delete-this-directory.txt b/src/pip-delete-this-directory.txt new file mode 100644 index 0000000..c8883ea --- /dev/null +++ b/src/pip-delete-this-directory.txt @@ -0,0 +1,5 @@ +This file is placed here by pip to indicate the source was put +here by pip. + +Once this package is successfully installed this source code will be +deleted (unless you remove this file).