Singular form just like the other error message.

This commit is contained in:
Christian Heimes 2013-07-01 15:23:39 +02:00
parent a24b4d260b
commit 8087879349
1 changed files with 1 additions and 1 deletions

View File

@ -5933,7 +5933,7 @@ Unpickler_set_memo(UnpicklerObject *self, PyObject *obj)
goto error;
if (idx < 0) {
PyErr_SetString(PyExc_ValueError,
"memos key must be positive integers.");
"memo key must be positive integers.");
goto error;
}
if (_Unpickler_MemoPut(self, idx, value) < 0)