Commit faaec2f3 authored by Martin v. Löwis's avatar Martin v. Löwis

Correct typo. Fixes #484611.

parent cfeb1f6c
...@@ -1695,7 +1695,7 @@ posix_spawnv(PyObject *self, PyObject *args) ...@@ -1695,7 +1695,7 @@ posix_spawnv(PyObject *self, PyObject *args)
getitem = PyTuple_GetItem; getitem = PyTuple_GetItem;
} }
else { 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; return NULL;
} }
......
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