this is a limitation of the str() function Solution : in web_ui.py line 187 replace it with ```diff --text = str(''.join(text)) ++text = (''.join(text)).encode('utf-8') ```