Changes between Initial Version and Version 1 of Ticket #7632
- Timestamp:
- Jul 5, 2008, 12:35:08 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #7632 – Description
initial v1 18 18 }}} 19 19 20 -----------------------------------------------21 22 20 I think it's bug, new version UploadedFile do not work as well as older. 23 21 24 22 For example what I am doing: 25 UploadedFile => data = StrinIO(UploadedFile.read()) => Image.open(data) 23 {{{ 24 UploadedFile => data = StringIO(UploadedFile.read()) => Image.open(data) 25 }}} 26 26 And what I got: 27 {{{ 27 28 IOError at /upload_image/ 28 29 '''cannot identify image file''' 30 }}} 29 31 It's work only if I use "forms.Field" 30 32