From 41efc144980d27f62c74ae864819e21070f0ce90 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Wed, 12 Jul 2006 05:26:35 +0000 Subject: [PATCH] Fix function name in error msg --- Modules/fcntlmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/fcntlmodule.c b/Modules/fcntlmodule.c index 477af06289a..49a91445fc7 100644 --- a/Modules/fcntlmodule.c +++ b/Modules/fcntlmodule.c @@ -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;