Fix function name in error msg

This commit is contained in:
Neal Norwitz 2006-07-12 05:26:35 +00:00
parent edef2be4af
commit 41efc14498
1 changed files with 1 additions and 1 deletions

View File

@ -327,7 +327,7 @@ fcntl_lockf(PyObject *self, PyObject *args)
l.l_type = F_WRLCK;
else {
PyErr_SetString(PyExc_ValueError,
"unrecognized flock argument");
"unrecognized lockf argument");
return NULL;
}
l.l_start = l.l_len = 0;