nickstenning / honcho

Honcho: a python clone of Foreman. For managing Procfile-based applications.
http://pypi.python.org/pypi/honcho
MIT License
1.59k stars 145 forks source link

Found a Encoding traceback when running with honcho. #152

Closed codeskyblue closed 8 years ago

codeskyblue commented 9 years ago

image

cosminstefanxp commented 9 years ago

Same here. I think it's caused by a print (logging) made by one of the processes of a text containing non-ascii characters.

cosminstefanxp commented 9 years ago

Could be related to https://github.com/nickstenning/honcho/issues/51 ?

nickstenning commented 8 years ago

Honcho will use the I/O encoding of the Python interpreter running it. If you need it to print UTF-8 then you need to set up the environment (either using LANG/LC_ALL environment variables or by explicitly setting PYTHONIOENCODING).