Skip to content

Commit

Permalink
fixes #15 -- bad parameter in load operation
Browse files Browse the repository at this point in the history
  • Loading branch information
shirkey committed Aug 5, 2015
1 parent 82d09a3 commit 8b392de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion route53_transfer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "0.1.2"
__version__ = "0.1.3"

from app import load, dump
2 changes: 1 addition & 1 deletion route53_transfer/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def get_zone(con, zone_name, vpc):

def create_zone(con, zone_name, vpc):
con.create_hosted_zone(domain_name=zone_name,
private_zone=is_private,
private_zone=vpc.get('is_private'),
vpc_region=vpc.get('region'),
vpc_id=vpc.get('id'),
comment='autogenerated by route53-transfer @ {}'.format(ts))
Expand Down

0 comments on commit 8b392de

Please sign in to comment.