Commit: 306bc5fd1aa3e5eab20dea0ce9134c36df4ca815
Author: Campbell Barton
Date:   Thu Dec 20 12:19:42 2018 +1100
Branches: master
https://developer.blender.org/rB306bc5fd1aa3e5eab20dea0ce9134c36df4ca815

PyAPI: don't truncate enums in exception messages

Not necessary and confusing when only some of the items are displayed.

See: T59044

===================================================================

M       source/blender/python/intern/bpy_rna.c

===================================================================

diff --git a/source/blender/python/intern/bpy_rna.c 
b/source/blender/python/intern/bpy_rna.c
index 9837017b8b1..b36a6e06651 100644
--- a/source/blender/python/intern/bpy_rna.c
+++ b/source/blender/python/intern/bpy_rna.c
@@ -1206,7 +1206,7 @@ static int pyrna_string_to_enum(
                if (!RNA_property_enum_value(BPy_GetContext(), ptr, prop, 
param, r_value)) {
                        const char *enum_str = pyrna_enum_as_string(ptr, prop);
                        PyErr_Format(PyExc_TypeError,
-                                    "%.200s enum \"%.200s\" not found in 
(%.200s)",
+                                    "%.200s enum \"%.200s\" not found in (%s)",
                                     error_prefix, param, enum_str);
                        MEM_freeN((void *)enum_str);
                        return -1;

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to