Changes between Initial Version and Version 5 of Ticket #11149


Ignore:
Timestamp:
May 19, 2009, 12:16:21 PM (15 years ago)
Author:
Karen Tracey
Comment:

Fixed formatting.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #11149 – Description

    initial v5  
    22
    33I use django revision 10000 and it is normal. But when I update to revision more then 10200 that I get error:
    4 "
     4{{{
    55cannot identify image fileRequest Method:       POST
    66Request URL:    http://127.0.0.1:8000/users/a1/
     
    1010Python Executable:      /usr/bin/python2.5
    1111Python Version: 2.5.4
    12 "
     12}}}
    1313
    1414My code where is problem is:
    1515
    16 "
     16{{{
    1717class ThumbnailImageField(models.ImageField):
    1818    def save_form_data(self, instance, data):
     
    2020            im = Image.open(data).convert("RGB")
    2121
    22 "
     22}}}
    2323
    2424if I change data to constant path that it will be work without error
Back to Top