1
0
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:
Terrence Cole
2017-07-13 14:56:04 -07:00
parent 3459064d0f
commit 95fb613966

View File

@@ -165,7 +165,7 @@ class RackspaceProvider(BaseProvider):
def _data_for_quoted(self, rrset):
return {
'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']
}