Commit 28ca42ef authored by Christian Heimes's avatar Christian Heimes

Singular form just like the other error message.

parent 2e7041b0
...@@ -5933,7 +5933,7 @@ Unpickler_set_memo(UnpicklerObject *self, PyObject *obj) ...@@ -5933,7 +5933,7 @@ Unpickler_set_memo(UnpicklerObject *self, PyObject *obj)
goto error; goto error;
if (idx < 0) { if (idx < 0) {
PyErr_SetString(PyExc_ValueError, PyErr_SetString(PyExc_ValueError,
"memos key must be positive integers."); "memo key must be positive integers.");
goto error; goto error;
} }
if (_Unpickler_MemoPut(self, idx, value) < 0) if (_Unpickler_MemoPut(self, idx, value) < 0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment