Browse Source

Merge branch 'master' of https://github.com/github/octodns

pull/84/head
Heesu Hwang 9 years ago
parent
commit
764e2472a8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      octodns/provider/route53.py

+ 1
- 1
octodns/provider/route53.py View File

@ -250,7 +250,7 @@ class Route53Provider(BaseProvider):
more = True more = True
start = {} start = {}
while more: while more:
resp = self._conn.list_hosted_zones()
resp = self._conn.list_hosted_zones(**start)
for z in resp['HostedZones']: for z in resp['HostedZones']:
zones[z['Name']] = z['Id'] zones[z['Name']] = z['Id']
more = resp['IsTruncated'] more = resp['IsTruncated']


Loading…
Cancel
Save