mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #14591 from sivel/issue/14541
Allow lookups to return python data structures
This commit is contained in:
commit
f8211f83a0
1 changed files with 7 additions and 1 deletions
|
@ -420,7 +420,13 @@ class Templar:
|
|||
if wantlist:
|
||||
ran = wrap_var(ran)
|
||||
else:
|
||||
ran = UnsafeProxy(",".join(ran))
|
||||
try:
|
||||
ran = UnsafeProxy(",".join(ran))
|
||||
except TypeError:
|
||||
if isinstance(ran, list) and len(ran) == 1:
|
||||
ran = wrap_var(ran[0])
|
||||
else:
|
||||
ran = wrap_var(ran)
|
||||
|
||||
return ran
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue