Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillermo S. Romero <gsr.b3d@infernal-iceberg.com>2009-07-23 02:12:55 +0400
committerGuillermo S. Romero <gsr.b3d@infernal-iceberg.com>2009-07-23 02:12:55 +0400
commitb6db4f8e17d9005901d82105d1c35b4959ca5527 (patch)
tree9b8d7872a5a096c8ce97f37dbfa63f9ac09ca87c /source/blender/python/intern/bpy_rna.c
parent413fa4730b7d087fef9f92179c107f58e2286a49 (diff)
Change to avoid trigraph confusions.
Diffstat (limited to 'source/blender/python/intern/bpy_rna.c')
-rw-r--r--source/blender/python/intern/bpy_rna.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/intern/bpy_rna.c b/source/blender/python/intern/bpy_rna.c
index be98a985ac2..449c0fd3f78 100644
--- a/source/blender/python/intern/bpy_rna.c
+++ b/source/blender/python/intern/bpy_rna.c
@@ -1926,7 +1926,7 @@ static PyObject * pyrna_func_call(PyObject * self, PyObject *args, PyObject *kw)
}
if(self_func==NULL) {
- PyErr_Format(PyExc_RuntimeError, "%.200s.???(): rna function internal function is NULL, this is a bug. aborting", RNA_struct_identifier(self_ptr->type));
+ PyErr_Format(PyExc_RuntimeError, "%.200s.\?\?\?(): rna function internal function is NULL, this is a bug. aborting", RNA_struct_identifier(self_ptr->type));
return NULL;
}