mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-03-31 15:53:09 +00:00
Fix syntax error in json/jsonarg type parser
The lack of a comma caused the statement to always evaluate as a `TypeError` when python interpreted `value (list, tuple, dict)` to call value with the arguments list, tuple, and dict.
This commit is contained in:
@@ -1474,7 +1474,7 @@ class AnsibleModule(object):
|
||||
if isinstance(value, (unicode, bytes)):
|
||||
return value.strip()
|
||||
else:
|
||||
if isinstance(value (list, tuple, dict)):
|
||||
if isinstance(value, (list, tuple, dict)):
|
||||
return json.dumps(value)
|
||||
raise TypeError('%s cannot be converted to a json string' % type(value))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user