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

Fix typo in SUPPORTS_MULTIVALUE_PTR flag name

This commit is contained in:
Viranch Mehta
2021-09-17 21:59:16 -07:00
parent 00d283b217
commit d1d0de0c60
6 changed files with 9 additions and 9 deletions

View File

@@ -66,7 +66,7 @@ class BaseProvider(BaseSource):
record.dynamic = None
desired.add_record(record, replace=True)
elif record._type == 'PTR' and len(record.values) > 1 and \
not self.SUPPORTS_MUTLIVALUE_PTR:
not self.SUPPORTS_MULTIVALUE_PTR:
# replace with a single-value copy
msg = \
f'multi-value PTR records not supported for {record.fqdn}'