Kaydet (Commit) 41efc144 authored tarafından Neal Norwitz's avatar Neal Norwitz

Fix function name in error msg

üst edef2be4
...@@ -327,7 +327,7 @@ fcntl_lockf(PyObject *self, PyObject *args) ...@@ -327,7 +327,7 @@ fcntl_lockf(PyObject *self, PyObject *args)
l.l_type = F_WRLCK; l.l_type = F_WRLCK;
else { else {
PyErr_SetString(PyExc_ValueError, PyErr_SetString(PyExc_ValueError,
"unrecognized flock argument"); "unrecognized lockf argument");
return NULL; return NULL;
} }
l.l_start = l.l_len = 0; l.l_start = l.l_len = 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