Use unicode for python v3 support

This commit is contained in:
Jose Plana
2013-11-25 17:36:35 +01:00
parent ea8901f417
commit 41bedc05f0

View File

@@ -106,7 +106,7 @@ PyObject * get_pylist_from_git_strarray(git_strarray *strarray)
PyList_SET_ITEM(
new_list,
index,
PyString_FromString(strarray->strings[index]));
to_unicode(strarray->strings[index], NULL, NULL));
}
return new_list;
}