Browse Source

fix lint

pull/430/head
Joshua Hügli 6 years ago
parent
commit
65922bbe5c
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      octodns/provider/route53.py

+ 4
- 2
octodns/provider/route53.py View File

@ -678,9 +678,11 @@ class Route53Provider(BaseProvider):
self.log.debug('_get_zone_id: no matching zone, creating, '
'ref=%s', ref)
if self.delegation_set_id:
resp = self._conn.create_hosted_zone(Name=name,
resp = self._conn.create_hosted_zone(
Name=name,
CallerReference=ref,
DelegationSetId=self.delegation_set_id)
DelegationSetId=self.delegation_set_id
)
else:
resp = self._conn.create_hosted_zone(Name=name,
CallerReference=ref)


Loading…
Cancel
Save