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.
pull/16712/merge
Ryan S. Brown 8 years ago
parent 409d95d67e
commit bed24689ec

@ -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…
Cancel
Save