Fix minor grammar typo.

This commit is contained in:
Brett Cannon 2007-01-29 23:43:38 +00:00
parent c7202a834e
commit e33a6112b4
1 changed files with 1 additions and 1 deletions

View File

@ -2772,7 +2772,7 @@ PyEval_EvalCodeEx(PyCodeObject *co, PyObject *globals, PyObject *locals,
}
PyErr_Format(PyExc_TypeError,
"%.200s() needs "
"keyword only argument %s",
"keyword-only argument %s",
PyString_AsString(co->co_name),
PyString_AsString(name));
goto fail;