﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
11595	Fixture validation errors should report their data	freyley	Raúl Cumplido	"For example, here's what {{{django/db/models/fields/__init__.py}}} has for lines 341-348:

{{{#!python
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:

{{{#!python    
_(""(%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)

"	Cleanup/optimization	closed	Core (Serialization)	1.0	Normal	fixed	easy-pickings	Anand Kumria Peter van Kampen	Ready for checkin	1	0	0	0	1	0
