Hello
I use your module of version 0.12.3 on Python 2 and MySQL as database.
And I have problem with fields with type 'FILE'.
When I upload files with non-ASCII characters in them names I have UnicodeDecodeError in MySQL save method.
This method try use value of field as bytes string.
It happen because your code convert value of field with type FILE is instance to future.types.newstr.newstr. And it doesn't convert to Python 2 unicode type as other values from form.
Can you help me solve this problem? Or maybe you show me where I must dig in my search?
Hello
I use your module of version 0.12.3 on Python 2 and MySQL as database.
And I have problem with fields with type 'FILE'.
When I upload files with non-ASCII characters in them names I have UnicodeDecodeError in MySQL save method.
This method try use value of field as bytes string.
It happen because your code convert value of field with type FILE is instance to
future.types.newstr.newstr. And it doesn't convert to Python 2unicodetype as other values from form.Can you help me solve this problem? Or maybe you show me where I must dig in my search?