removed non-translatable json error

This commit is contained in:
mdipierro
2013-07-22 14:52:53 -05:00
parent 71407b4c6d
commit 44985f0076
2 changed files with 2 additions and 2 deletions

View File

@@ -1 +1 @@
Version 2.6.0-development+timestamp.2013.07.22.09.12.34
Version 2.6.0-development+timestamp.2013.07.22.14.51.29

View File

@@ -359,7 +359,7 @@ class IS_JSON(Validator):
return (value, None) # the serialized value is not passed
return (simplejson.loads(value), None)
except JSONErrors, e:
return (value, translate(self.error_message) + ': '+ e.message)
return (value, translate(self.error_message))
def formatter(self,value):
if value is None: