extraneous space

This commit is contained in:
wiredfool 2016-06-16 00:52:12 -07:00
parent 92a13d975d
commit b0ec525976

View File

@ -387,7 +387,7 @@ getlist(PyObject* arg, Py_ssize_t* length, const char* wrong_length, int type)
}
n = PyObject_Length(arg);
if (length && wrong_length && n != *length) {
if (length && wrong_length && n != *length) {
PyErr_SetString(PyExc_ValueError, wrong_length);
return NULL;
}