Use a real list comprehension rather than list() around a generator (#25594)
It's faster and more idiomatic.
This commit is contained in:
parent
44935a5db6
commit
3f85aa3abd
1 changed files with 1 additions and 1 deletions
|
@ -806,7 +806,7 @@ class Ec2Inventory(object):
|
|||
errors.append(' - AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY environment vars found but may not be correct')
|
||||
|
||||
boto_paths = ['/etc/boto.cfg', '~/.boto', '~/.aws/credentials']
|
||||
boto_config_found = list(p for p in boto_paths if os.path.isfile(os.path.expanduser(p)))
|
||||
boto_config_found = [p for p in boto_paths if os.path.isfile(os.path.expanduser(p))]
|
||||
if len(boto_config_found) > 0:
|
||||
errors.append(" - Boto configs found at '%s', but the credentials contained may not be correct" % ', '.join(boto_config_found))
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue