mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-25 07:56:38 +00:00
Fix if-statement that always evaluates True
This commit is contained in:
@@ -732,7 +732,7 @@ def listify_lookup_plugin_terms(terms, basedir, inject):
|
||||
except:
|
||||
pass
|
||||
|
||||
if '{' or '[' in terms:
|
||||
if '{' in terms or '[' in terms:
|
||||
# Jinja2 already evaluated a variable to a list.
|
||||
# Jinja2-ified list needs to be converted back to a real type
|
||||
# TODO: something a bit less heavy than eval
|
||||
|
||||
Reference in New Issue
Block a user