Fix mathutils array parsing exception message

Error in exception message when the argument doesn't meet the sequence
length requirement.

Ref: !123748
This commit is contained in:
Andrej730 2024-06-25 22:23:42 +05:00 committed by Campbell Barton
parent 30ad15c01c
commit fcad7e7d2b

@ -209,7 +209,7 @@ int mathutils_array_parse_alloc(float **array,
if (num < array_num) {
PyErr_Format(PyExc_ValueError,
"%.200s: sequence size is %d, expected > %d",
"%.200s: sequence size is %d, expected >= %d",
error_prefix,
num,
array_num);
@ -238,7 +238,7 @@ int mathutils_array_parse_alloc(float **array,
if (num < array_num) {
Py_DECREF(value_fast);
PyErr_Format(PyExc_ValueError,
"%.200s: sequence size is %d, expected > %d",
"%.200s: sequence size is %d, expected >= %d",
error_prefix,
num,
array_num);