Changes between Initial Version and Version 5 of Ticket #11149
- Timestamp:
- May 19, 2009, 12:16:21 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11149 – Description
initial v5 2 2 3 3 I use django revision 10000 and it is normal. But when I update to revision more then 10200 that I get error: 4 " 4 {{{ 5 5 cannot identify image fileRequest Method: POST 6 6 Request URL: http://127.0.0.1:8000/users/a1/ … … 10 10 Python Executable: /usr/bin/python2.5 11 11 Python Version: 2.5.4 12 "12 }}} 13 13 14 14 My code where is problem is: 15 15 16 " 16 {{{ 17 17 class ThumbnailImageField(models.ImageField): 18 18 def save_form_data(self, instance, data): … … 20 20 im = Image.open(data).convert("RGB") 21 21 22 " 22 }}} 23 23 24 24 if I change data to constant path that it will be work without error