Commit 207bf91e authored by Tristan Cavelier's avatar Tristan Cavelier

erp5_hal_json_style: Fix isinstance parameter

TypeError: isinstance() arg 2 must be a class, type, or tuple of classes and types
parent 5f02a4a0
......@@ -464,7 +464,7 @@ def getFieldDefault(form, field, key, value=None):
if value is None:
value = (REQUEST.form.get(field.id, REQUEST.form.get(key, None)) or
field.get_value('default', request=REQUEST, REQUEST=REQUEST))
if field.has_value("unicode") and field.get_value("unicode") and isinstance(value, 'unicode'):
if field.has_value("unicode") and field.get_value("unicode") and isinstance(value, unicode):
value = unicode(value, form.get_form_encoding())
if getattr(value, 'translate', None) is not None:
return "%s" % value
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment