Skip to content

Commit

Permalink
using zone_file property instead of live_zone_file.
Browse files Browse the repository at this point in the history
  • Loading branch information
koalalorenzo committed Aug 16, 2014
1 parent 9ec8a69 commit 2bb62f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion digitalocean/Domain.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def load(self):
# URL https://api.digitalocean.com/v2/domains
domains = self.get_data("domains/%s" % self.name)
domain = domains[u'domain']
self.live_zone_file = domain[u'zone_file']
self.zone_file = domain[u'zone_file']
self.ttl = domain[u'ttl']
self.name = domain[u'name']

Expand Down

0 comments on commit 2bb62f4

Please sign in to comment.