Removed duplicate word in error message

This commit is contained in:
Andrew Murray 2021-04-05 19:06:22 +10:00
parent 56dfc4a956
commit 9d489f69ae

View File

@ -790,7 +790,7 @@ PyImaging_LibTiffEncoderNew(PyObject *self, PyObject *args) {
int stride = 256;
if (len != 768) {
PyErr_SetString(
PyExc_ValueError, "Requiring 768 items for for Colormap");
PyExc_ValueError, "Requiring 768 items for Colormap");
return NULL;
}
UINT16 *av;