1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-10 12:58:35 +03:00

pyrpc_util: fix error Exception message in py_check_dcerpc_type()

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
This commit is contained in:
Stefan Metzmacher 2024-11-19 15:55:30 +01:00
parent 567d4e356a
commit 018a3ced1c

View File

@ -53,7 +53,7 @@ bool py_check_dcerpc_type(PyObject *obj, const char *module, const char *type_na
Py_DECREF(mod);
if (type == NULL) {
PyErr_Format(PyExc_RuntimeError, "Unable to find type %s in module %s",
module, type_name);
type_name, module);
return false;
}