[16:30:38] <anibal> Hello, any suggestions to fix this django-captcha: http://ladiaria.com.uy/comunidad/playas/
[17:11:19] <wiredfool> What's the problem, other than the server returning a 500 error
[17:18:15] <anibal> wiredfool, thank you, I got this now: PIL/_imaging.so: undefined symbol: PyUnicodeUCS2_AsLatin1String
[17:24:45] <Arfrever> anibal: You are using Python built with wide unicode, but your PIL/_imaging.so was built against a version of Python built with narrow unicode.
[17:25:18] <anibal> Arfrever, thank you very much, I will try to rebuild correctly
[17:25:32] <Arfrever> Python with narrow unicode has PyUnicodeUCS2_AsLatin1String, while Python with wide unicode has PyUnicodeUCS4_AsLatin1String.
[17:41:48] <wiredfool> ah. Many things have been fixed in Pillow since the fork, including at least a few that are related to font handling with unicode.