mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 09:23:56 +00:00
Fixed unnecessary parens in if statement
This commit is contained in:
parent
2e02763fa3
commit
23cd5f7933
@ -592,7 +592,7 @@ def create_launch_configuration(name, image_id, key_name=None,
|
||||
# If a VPC is specified, then determine the secgroup id's within that VPC, not
|
||||
# within the default VPC. If a security group id is already part of the list,
|
||||
# convert_to_group_ids leaves that entry without attempting a lookup on it.
|
||||
if (security_groups and (vpc_id or vpc_name)):
|
||||
if security_groups and (vpc_id or vpc_name):
|
||||
security_groups = __salt__['boto_secgroup.convert_to_group_ids'](
|
||||
security_groups,
|
||||
vpc_id=vpc_id, vpc_name=vpc_name,
|
||||
|
Loading…
Reference in New Issue
Block a user