[FIX] validate_matrix did not return anything while the matrix was valid; now, it returns {} like other validation functions

bzr revid: rim@openerp.com-20131219084900-s6gwmlum3cbt464r
This commit is contained in:
Richard Mathot (OpenERP) 2013-12-19 09:49:00 +01:00
parent 57dfcc6e12
commit c3e234ef21
1 changed files with 1 additions and 1 deletions

View File

@ -725,7 +725,7 @@ class survey_question(osv.osv):
errors.update({answer_tag: question.constr_error_msg})
else:
pass # Everything is okay
return errors
return errors
class survey_label(osv.osv):