#5928: form cleaned_data does not have uploaded request.FILES content
-------------------------------------+--------------------------------------
Reporter: [EMAIL PROTECTED] | Owner: nobody
Status: new | Component: django.newforms
Version: SVN | Keywords:
Stage: Unreviewed | Has_patch: 0
-------------------------------------+--------------------------------------
Hi,
I've file uploading in my project for a while now and it worked pretty
fine.
But after not testing it for a while it seems that since a more or less
recent django svn version
things stopped working. My code is like this:
{{{
print request.FILES
# files have <content omitted> printed
request.POST.update(request.FILES)
print request.POST
# same as above, content is there
form = TestForm(request.POST)
if form.is_valid():
# form.cleaned_data does not contain content anymore
}}}
I've tried some things and I can only think of a bug in django.
--
Ticket URL: <http://code.djangoproject.com/ticket/5928>
Django Code <http://code.djangoproject.com/>
The web framework for perfectionists with deadlines
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---