Opened 15 years ago

Last modified 13 years ago

#11149 closed

error with def save_form_data -- — at Initial Version

Reported by: Roman Kalinichenko Owned by: nobody
Component: Database layer (models, ORM) Version: dev
Severity: Keywords:
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Hi everyone

I use django revision 10000 and it is normal. But when I update to revision more then 10200 that I get error:
"
cannot identify image fileRequest Method: POST
Request URL: http://127.0.0.1:8000/users/a1/
Exception Type: IOError
Exception Value: cannot identify image file
Exception Location: /usr/lib/python2.5/site-packages/PIL/Image.py in open, line 1917
Python Executable: /usr/bin/python2.5
Python Version: 2.5.4
"

My code where is problem is:

"
class ThumbnailImageField(models.ImageField):

def save_form_data(self, instance, data):

if data and isinstance(data, UploadedFile):

im = Image.open(data).convert("RGB")

"

if I change data to constant path that it will be work without error

Change History (0)

Note: See TracTickets for help on using tickets.
Back to Top