summaryrefslogtreecommitdiff
path: root/numpy/core/src
diff options
context:
space:
mode:
authorEric Mariasis <ericmariasis829@gmail.com>2020-02-01 18:22:59 -0500
committerEric Mariasis <ericmariasis829@gmail.com>2020-02-01 18:22:59 -0500
commita9158df4178edb039e51a7f347c4dc6d0b6215b1 (patch)
tree7a469efdf36773966c79e22fce42b020c7c3431a /numpy/core/src
parent812920c0cc3098289a105f40371814512fc6157d (diff)
downloadnumpy-a9158df4178edb039e51a7f347c4dc6d0b6215b1.tar.gz
resolved spacing issue
Diffstat (limited to 'numpy/core/src')
-rw-r--r--numpy/core/src/multiarray/descriptor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/src/multiarray/descriptor.c b/numpy/core/src/multiarray/descriptor.c
index 5182a28dd..595702fcf 100644
--- a/numpy/core/src/multiarray/descriptor.c
+++ b/numpy/core/src/multiarray/descriptor.c
@@ -447,8 +447,8 @@ _convert_from_array_descr(PyObject *obj, int align)
else if (PyTuple_Check(name)) {
if (PyTuple_GET_SIZE(name) != 2) {
PyErr_Format(PyExc_TypeError,
- "If a tuple, the first element of a field tuple must have \
- two elements, not %d",
+ "If a tuple, the first element of a field tuple must have "
+ "two elements, not %zd",
PyTuple_GET_SIZE(name));
goto fail;
}