Changes between Initial Version and Version 1 of Ticket #7632


Ignore:
Timestamp:
Jul 5, 2008, 12:35:08 AM (16 years ago)
Author:
Malcolm Tredinnick
Comment:

Fixed ticket description formatting.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #7632 – Description

    initial v1  
    1818}}}
    1919
    20 -----------------------------------------------
    21 
    2220I think it's bug, new version UploadedFile do not work as well as older.
    2321
    2422For 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}}}
    2626And what I got:
     27{{{
    2728              IOError at /upload_image/
    2829              '''cannot identify image file'''
     30}}}
    2931It's work only if I use "forms.Field"
    3032
Back to Top