Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -134,10 +134,14 @@ DNS
(GITHUB-621)
[Alejandro Pereira]

- Introduced GoDaddy DNS Driver with examples and documentation
- Introduce GoDaddy DNS Driver with examples and documentation.
(LIBCLOUD-772, GITHUB-640, LIBCLOUD-778)
[Anthony Shaw]

- Add new driver for CloudFlare DNS (https://www.cloudflare.com/dns/).
(GITHUB-637)
[Tomaz Muraus]

Changes with Apache Libcloud 0.19.0
-----------------------------------

Expand Down
3 changes: 2 additions & 1 deletion libcloud/dns/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,10 @@ def _get_numeric_id(self):
return record_id

def __repr__(self):
zone = self.zone.domain if self.zone.domain else self.zone.id
return ('<Record: zone=%s, name=%s, type=%s, data=%s, provider=%s, '
'ttl=%s ...>' %
(self.zone.id, self.name, self.type, self.data,
(zone, self.name, self.type, self.data,
self.driver.name, self.ttl))


Expand Down
Loading