Comment 1 for bug 716377

Revision history for this message
enmk (v-nemkov) wrote :

To fix the issue edit \dreampie\subp_main.py, replace:

sys.setdefaultencoding('utf-8')

with:

import platform
if not "3.2" in platform.python_version():
 sys.setdefaultencoding('utf-8')

Tested on WindowsXP SP3, both Python2.7 and Python3.2 can be used with this fix.