Catch the FormValidationError exception and then access its form attribute.

This commit is contained in:
Michael Richardson 2009-05-15 01:26:03 -07:00
Родитель 09280be3ce
Коммит 10730cf120
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -103,9 +103,9 @@ class Resource(object):
try:
result = meth(request, *args, **kwargs)
except FormValidationError, form:
except FormValidationError, e:
# TODO: Use rc.BAD_REQUEST here
return HttpResponse("Bad Request: %s" % form.errors, status=400)
return HttpResponse("Bad Request: %s" % e.form.errors, status=400)
except TypeError, e:
result = rc.BAD_REQUEST
hm = HandlerMethod(meth)