Re: clean_data or cleaned_data

2007-10-02 Thread James Bennett
On 10/2/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > so changed to slug=form.cleaned_data['slug'], it is ok now. > > why? If you are using the development version of Django, it is very much in your best interest to follow Django's development carefully; from time to time, backwards-incompat

clean_data or cleaned_data

2007-10-02 Thread [EMAIL PROTECTED]
just a discussion: i used the code from djangosnippets.com for a newform: slug=form.clean_data['slug'], and it said there are no clean_data. so changed to slug=form.cleaned_data['slug'], it is ok now. why? you know i integrate code of djangosnippets.com as a app, it works well. just want t