summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
Diffstat (limited to 'Python')
-rw-r--r--Python/ceval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index 1f18545..2a0a57c 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -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;