cubicweb/entities/adapters.py
changeset 11358 179b5ff3f428
parent 11129 97095348b3ee
child 11416 9c2fbb872e91
--- a/cubicweb/entities/adapters.py	Mon Jun 20 17:56:49 2016 +0200
+++ b/cubicweb/entities/adapters.py	Wed Jun 22 17:13:10 2016 +0200
@@ -427,5 +427,6 @@
         # constraint between two attributes). This should be the purpose of an api rework at some
         # point, we currently rely on the fact that such constraint will provide a dedicated user
         # message not relying on the `value` argument
-        msg, args = constraint.failed_message(key, self.entity.cw_edited.get(rschema.type))
+        value = self.entity.cw_edited.get(rschema.type)
+        msg, args = constraint.failed_message(key, value, self.entity)
         raise ValidationError(self.entity.eid, {key: msg}, args)