Browse Source
chunked_values should return _value_type not plain string
pull/1089/head
Ross McFarland
2 years ago
No known key found for this signature in database
GPG Key ID: 943B179E15D3B22A
1 changed files with
1 additions and
1 deletions
-
octodns/record/chunked.py
|
|
|
@ -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): |
|
|
|
|