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

Update octodns/provider/azuredns.py

Co-authored-by: Ross McFarland <ross@github.com>
This commit is contained in:
Arunothia Marappan
2020-12-26 15:01:14 -08:00
committed by GitHub
parent cffc906071
commit 32811ed5c1

View File

@@ -498,7 +498,7 @@ class AzureProvider(BaseProvider):
for change in changes:
class_name = change.__class__.__name__
if class_name == 'Delete':
getattr(self, '_apply_{}'.format(class_name))(change)
self._apply_Delete(change)
for change in changes:
class_name = change.__class__.__name__