﻿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
8957	Typo in Admin validation exception message	charmless	nobody	"If a prepopulated_fields value refers to a nonexistant field, the error message is in correct.

So for:
{{{
   prepopulated_fields = {'slug': ['field_which_doesnt_exist']}
}}}

The error raised is:
{{{
'SomeAdmin.prepopulated_fields['field_which_doesnt_exist'][0]' refers to field 'field_which_doesnt_exist' that is missing from model 'Release'.
}}}

The expected error should finger 'slug' as the key with the offending source field:
{{{
'SomeAdmin.prepopulated_fields['slug'][0]' refers to field 'field_which_doesnt_exist' that is missing from model 'Release'.
}}}

This is a simple typo. Fix attached.

"		closed	contrib.admin	dev		fixed			Unreviewed	1	0	0	0	0	0
