diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-12-02 05:40:00 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-12-02 05:40:00 +0000 |
commit | 42655ec7108f9a1e8e684328c0058c837eaf1a61 (patch) | |
tree | 31fb07cb4c573079d4310f39ba29a8738d143522 /numpy/core/src/arrayobject.c | |
parent | 3a93adce6609cd3499d85c5f2b9dc38d3d1255c7 (diff) | |
download | numpy-42655ec7108f9a1e8e684328c0058c837eaf1a61.tar.gz |
Add space to error message.
Diffstat (limited to 'numpy/core/src/arrayobject.c')
-rw-r--r-- | numpy/core/src/arrayobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |