﻿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
12689	admin model's exclude with single member tuple and no comma does not produce an error	bparker	nobody	"Using django 1.1 I was creating an inline and left out a comma when using a single member tuple:
{{{
class UserProfileInline(admin.StackedInline):
        model = UserProfile
        exclude = ('old_password')
}}}
But no error was produced at all... django simply ignored the exclude line and acted like it wasn't there.
Also tried it with a normal ModelAdmin and experienced the same behavior:
{{{
class CommentAdmin(admin.ModelAdmin):
        list_display = ['reservation', 'text', 'created_by', 'created_date']
        save_as = True
        exclude = ('assignment')
        form = CommentAdminForm
}}}
Is this normal behavior?"		closed	contrib.admin	1.1		fixed			Accepted	1	0	0	0	0	0
