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

Flipped bool logic

This commit is contained in:
Ross McFarland
2020-03-30 07:12:25 -07:00
committed by GitHub
parent 1fb4f4facd
commit bc3ce2071c

View File

@@ -586,7 +586,7 @@ class CloudflareProvider(BaseProvider):
for desired_record in desired.records:
existing_record = existing_records.get(desired_record, None)
if existing_record: # Will be created
if not existing_record: # Will be created
continue
elif desired_record in changed_records: # Already being updated
continue