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:
parent
409d95d67e
commit
bed24689ec
1 changed files with 1 additions and 1 deletions
|
@ -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))
|
||||
|
||||
|
|
Loading…
Reference in a new issue