mirror of
https://github.com/github/octodns.git
synced 2024-05-11 05:55:00 +00:00
Pull quoted data out of the correct field.
This commit is contained in:
@@ -165,7 +165,7 @@ class RackspaceProvider(BaseProvider):
|
|||||||
def _data_for_quoted(self, rrset):
|
def _data_for_quoted(self, rrset):
|
||||||
return {
|
return {
|
||||||
'type': rrset[0]['type'],
|
'type': rrset[0]['type'],
|
||||||
'values': [strip_quotes(r['content']) for r in rrset[0]['records']],
|
'values': [strip_quotes(r['data']) for r in rrset],
|
||||||
'ttl': rrset[0]['ttl']
|
'ttl': rrset[0]['ttl']
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user