Skip to content

Commit

Permalink
Replace fqdn_name by full_name. We don't want the trailing dot.
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrien Ferrand committed Jun 15, 2017
1 parent 59062c6 commit 8732f2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lexicon/providers/gandi.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def list_records(self, type=None, name=None, content=None):
for record in payload:
processed_record = {
'type': record['type'],
'name': self._fqdn_name(record['name']),
'name': self._full_name(record['name']),
'ttl': record['ttl'],
'content': record['value'],
'id': record['id']
Expand Down

0 comments on commit 8732f2d

Please sign in to comment.