Commit c1c32c75 by kiri

add NoneType check.

parent 3722bebb
...@@ -300,6 +300,7 @@ def main(): ...@@ -300,6 +300,7 @@ def main():
elb_man = ElbManager(module, instance_id, ec2_elbs, aws_access_key, elb_man = ElbManager(module, instance_id, ec2_elbs, aws_access_key,
aws_secret_key, region=region) aws_secret_key, region=region)
if ec2_elbs is not None:
for elb in ec2_elbs: for elb in ec2_elbs:
if not elb_man.exists(elb): if not elb_man.exists(elb):
msg="ELB %s does not exist" % elb msg="ELB %s does not exist" % elb
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment