﻿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	nobody	"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)

"	Cleanup/optimization	new	Core (Serialization)	1.0	Normal		easy-pickings		Accepted	0	0	0	0		
