use PyC_UnicodeFromByte for bpy.app.tempdir incase of non utf-8 filepath

This commit is contained in:
Campbell Barton 2010-10-13 14:14:22 +00:00
parent bbc8cf9d24
commit a81be2075f

@ -30,6 +30,8 @@
#include "BKE_global.h"
#include "structseq.h"
#include "../generic/py_capi_utils.h"
#ifdef BUILD_DATE
extern char build_date[];
extern char build_time[];
@ -146,7 +148,7 @@ static PyObject *bpy_app_tempdir_get(PyObject *self, void *closure)
(void)(self);
(void)(closure);
return PyUnicode_FromString(btempdir);
return PyC_UnicodeFromByte(btempdir);
}
PyGetSetDef bpy_app_debug_getset= {"debug", bpy_app_debug_get, bpy_app_debug_set, "Boolean, set when blender is running in debug mode (started with -d)", NULL};