mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 05:42:50 +00:00
Catch TypeError on join, and if caught just return a single item, or a list of many
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user