Singular form just like the other error message.

This commit is contained in:
Christian Heimes 2013-07-01 15:23:48 +02:00
commit 54882bfc18
1 changed files with 1 additions and 1 deletions

View File

@ -5954,7 +5954,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)