Opened 15 years ago

Last modified 13 years ago

#11595 closed Cleanup/optimization

Fixture validation errors should report their data — at Version 2

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 (last modified by Julien Phalip)

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 (2)

comment:1 by Russell Keith-Magee, 14 years ago

Has patch: unset
Triage Stage: UnreviewedAccepted

comment:2 by Julien Phalip, 13 years ago

Description: modified (diff)
Keywords: easy-pickings added
Severity: Normal
Type: Cleanup/optimization
Note: See TracTickets for help on using tickets.
Back to Top