Commit bd9848d0 authored by Andrew M. Kuchling's avatar Andrew M. Kuchling

Fix typo in error message

parent 7ae3a5e7
......@@ -176,7 +176,7 @@ PyObject *PyString_Decode(const char *s,
}
if (!PyString_Check(str)) {
PyErr_Format(PyExc_TypeError,
"decoder did not return an string object (type=%.400s)",
"decoder did not return a string object (type=%.400s)",
str->ob_type->tp_name);
Py_DECREF(str);
goto onError;
......
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