I'm trying to build a back-end interface for my application with flask-admin. When I try to access the form to create a new entry I get:
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 13: ordinal not in range(128)
Going through the stack trace, the problem is that some items in my table contain non-ascii characters. How can I solve this issue? Thanks!