Opened 15 years ago

Last modified 13 years ago

#11595 closed

Fixture validation errors should report their data — at Initial Version

Reported by: freyley Owned by: nobody
Component: Core (Serialization) Version: 1.0
Severity: Normal Keywords: easy-pickings
Cc: Anand Kumria, Peter van Kampen Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

For example, here's what django/db/models/fields/init.py has for lines 341-348:

def to_python(self, value):

if value is None:

return value

try:

return int(value)

except (TypeError, ValueError):

raise exceptions.ValidationError(

_("This value must be an integer.") )

Changing line 348 to:

_("(%s) must be an integer." % value) )

means that when you convert a text field to a joined object, you know which one's broken where. (Other places in that file do the same thing)

Change History (0)

Note: See TracTickets for help on using tickets.
Back to Top