Merge branch 'validation-message'

This commit is contained in:
Martin Alderete
2013-01-15 02:45:47 -03:00
3 changed files with 37 additions and 1 deletions

View File

@@ -252,7 +252,7 @@ class BaseField(object):
elif value_to_check not in self.choices:
msg = ('Value must be %s of %s' %
(err_msg, unicode(self.choices)))
self.error()
self.error(msg)
# check validation argument
if self.validation is not None: