This is a simple Python dictionary exception; it has nothing to do with Django.

> Stuff.objects.create(title=self.cleaned_data['title'],
> 
> Exception Type: KeyError at /add_stuff/
> Exception Value: title

You're asking for the value of the dictionary in key 'title,' but there's no 
such thing.

Either set a default value by using self.cleaned_data.get('title', 
SomeDefaultValue) or
fix your form so that it makes the value required.

Shawn

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

Reply via email to