From 499a2b2b4ba6a3850cab0249f15f762f345c3634 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 13 Mar 2024 17:12:51 +1100 Subject: [PATCH] Cleanup: remove double-space in exception message --- source/blender/python/intern/bpy_operator.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/python/intern/bpy_operator.cc b/source/blender/python/intern/bpy_operator.cc index 497dbb5db3f..9bd454477db 100644 --- a/source/blender/python/intern/bpy_operator.cc +++ b/source/blender/python/intern/bpy_operator.cc @@ -226,7 +226,7 @@ static PyObject *pyop_call(PyObject * /*self*/, PyObject *args) if (kw && PyDict_Size(kw)) { error_val = pyrna_pydict_to_props( - &ptr, kw, false, "Converting py args to operator properties: "); + &ptr, kw, false, "Converting py args to operator properties:"); } if (error_val == 0) { @@ -366,7 +366,7 @@ static PyObject *pyop_as_string(PyObject * /*self*/, PyObject *args) if (kw && PyDict_Size(kw)) { error_val = pyrna_pydict_to_props( - &ptr, kw, false, "Converting py args to operator properties: "); + &ptr, kw, false, "Converting py args to operator properties:"); } std::string op_string;