Update dal.py Table:validate_and_update

Validation has been fixed on validate_and_update method
This commit is contained in:
mcabo
2014-02-14 15:32:58 +01:00
parent caee53e778
commit c810e4491a
+1 -1
View File
@@ -9140,7 +9140,7 @@ class Table(object):
new_fields[key] = value
if _key is DEFAULT:
record = self(**values)
record = self(**fields)
elif isinstance(_key, dict):
record = self(**_key)
else: