From: Martin v. Löwis Date: Sat, 24 Nov 2001 09:31:44 +0000 (+0000) Subject: Correct typo. Fixes #484611. X-Git-Tag: v2.2.1c1~712 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e75f0e480187e75709ca1f96409bb685b261cc3e;p=thirdparty%2FPython%2Fcpython.git Correct typo. Fixes #484611. --- diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 20765e199b0f..667bb20f58fa 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -1695,7 +1695,7 @@ posix_spawnv(PyObject *self, PyObject *args) getitem = PyTuple_GetItem; } else { - PyErr_SetString(PyExc_TypeError, "spawmv() arg 2 must be a tuple or list"); + PyErr_SetString(PyExc_TypeError, "spawnv() arg 2 must be a tuple or list"); return NULL; }