summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2001-11-24 09:31:44 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2001-11-24 09:31:44 (GMT)
commite75f0e480187e75709ca1f96409bb685b261cc3e (patch)
tree7bc6f7dc93b3f0ff05cc5fd47a2c9396696fbe92 /Modules
parentf5c76776023e925deac6391546bcb85cd0c2424c (diff)
downloadcpython-e75f0e480187e75709ca1f96409bb685b261cc3e.zip
cpython-e75f0e480187e75709ca1f96409bb685b261cc3e.tar.gz
cpython-e75f0e480187e75709ca1f96409bb685b261cc3e.tar.bz2
Correct typo. Fixes #484611.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/posixmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index 20765e1..667bb20 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;
}