From 42655ec7108f9a1e8e684328c0058c837eaf1a61 Mon Sep 17 00:00:00 2001 From: Travis Oliphant Date: Sat, 2 Dec 2006 05:40:00 +0000 Subject: Add space to error message. --- numpy/core/src/arrayobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/core/src/arrayobject.c') diff --git a/numpy/core/src/arrayobject.c b/numpy/core/src/arrayobject.c index 3bc0cbf5d..284e17901 100644 --- a/numpy/core/src/arrayobject.c +++ b/numpy/core/src/arrayobject.c @@ -3881,7 +3881,7 @@ static PyObject * array_index(PyArrayObject *v) { if (v->nd != 0 || !PyArray_ISINTEGER(v)) { - PyErr_SetString(PyExc_TypeError, "only 0-d integer" \ + PyErr_SetString(PyExc_TypeError, "only 0-d integer " \ "arrays can be converted to an index"); return NULL; } -- cgit v1.2.1