Enhance filters.Decode unicode handling #47
Closed
Labels
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Migrated issue, originally created by Anonymous
Right now, even when using filters.decode.utf8, it's possible to get str object after filter - when using some object which is not instance of basestring.
For example when using Mako with Django oldforms, Mako will crash on something like
Because
form['country']
is a !FormFieldWrapper instance, and it doesn't get decoded by filter.decode.utf8.So here's the small patch that will decode using given encoding even not basestring objects after converting object to string using str().
Attachments: decode.diff
The text was updated successfully, but these errors were encountered: