This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author neo gurb
Recipients Eugene.Klimov, georg.brandl, lukasz.langa, neo gurb, r.david.murray, rhettinger, the_isz, vstinner
Date 2016-02-01.21:40:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1454362854.67.0.347731391298.issue11597@psf.upfronthosting.co.za>
In-reply-to
Content
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.
History
Date User Action Args
2016-02-01 21:40:54neo gurbsetrecipients: + neo gurb, georg.brandl, rhettinger, vstinner, r.david.murray, lukasz.langa, the_isz, Eugene.Klimov
2016-02-01 21:40:54neo gurbsetmessageid: <1454362854.67.0.347731391298.issue11597@psf.upfronthosting.co.za>
2016-02-01 21:40:54neo gurblinkissue11597 messages
2016-02-01 21:40:54neo gurbcreate