Browse Source

DnsimpleProvider updates delete before create, or else errors thrown

pull/55/head
Ross McFarland 9 years ago
parent
commit
6fd7371e2f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      octodns/provider/dnsimple.py

+ 1
- 1
octodns/provider/dnsimple.py View File

@ -327,8 +327,8 @@ class DnsimpleProvider(BaseProvider):
self._client.record_create(new.zone.name[:-1], params)
def _apply_Update(self, change):
self._apply_Create(change)
self._apply_Delete(change)
self._apply_Create(change)
def _apply_Delete(self, change):
existing = change.existing


Loading…
Cancel
Save