From f0f189de76a3ac44208053a441a81c86718e6ef2 Mon Sep 17 00:00:00 2001 From: Colin Basnett Date: Tue, 1 Oct 2019 19:36:15 +0200 Subject: Fix ImBuf.load failure showing filename as garbage bytes Differential Revision: https://developer.blender.org/D5879 --- source/blender/python/generic/imbuf_py_api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/python/generic/imbuf_py_api.c b/source/blender/python/generic/imbuf_py_api.c index ff5e4769f19..6a7f899488b 100644 --- a/source/blender/python/generic/imbuf_py_api.c +++ b/source/blender/python/generic/imbuf_py_api.c @@ -463,7 +463,7 @@ static PyObject *M_imbuf_load(PyObject *UNUSED(self), PyObject *args, PyObject * const int file = BLI_open(filepath, O_BINARY | O_RDONLY, 0); if (file == -1) { - PyErr_Format(PyExc_IOError, "load: %s, failed to open file '%s'", strerror(errno)); + PyErr_Format(PyExc_IOError, "load: %s, failed to open file '%s'", strerror(errno), filepath); return NULL; } -- cgit v1.2.3