neo gurb added the comment:

In file ConfigParser.py, def write, replace line

    key = " = ".join((key, str(value).replace('\n', '\n\t')))

by

    key = " = ".join((key, str(value).decode('utf-8').replace('\n', '\n\t')))

Tested in Windows7 and Ubuntu 15.04.

----------
nosy: +neo gurb

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue11597>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to