Browse Source

chunked_values should return _value_type not plain string

pull/1089/head
Ross McFarland 2 years ago
parent
commit
9a28437b81
No known key found for this signature in database GPG Key ID: 943B179E15D3B22A
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      octodns/record/chunked.py

+ 1
- 1
octodns/record/chunked.py View File

@ -18,7 +18,7 @@ class _ChunkedValuesMixin(ValuesMixin):
for i in range(0, len(value), self.CHUNK_SIZE)
]
vs = '" "'.join(vs)
return f'"{vs}"'
return self._value_type(f'"{vs}"')
@property
def chunked_values(self):


Loading…
Cancel
Save