Today I noticed that while this breaks things complaining about an
unexpected kwarg empty_label:

some_field = forms.ModelMultipleChoiceField(
    widget=forms.CheckboxSelectMultiple(),
    queryset=SomeM2mField.objects.all(),
    empty_label='empty')

doing the following in a form's init works (assuming some_field is the
same without the empty_label kwarg):

self.fields['some_field'].empty_label = 'empty'

This seems to be a bug to me, but I could be wrong, anyone have any
thoughts about it?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to