From dcbbd9ea21fdeb0298e5baca82eeca1b3d7882cc Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Mon, 21 Nov 2011 02:17:08 +0100 Subject: Fix a typo in PC/_subprocess.c --- PC/_subprocess.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PC/_subprocess.c b/PC/_subprocess.c index ec93d25..fdcc55b 100644 --- a/PC/_subprocess.c +++ b/PC/_subprocess.c @@ -463,7 +463,7 @@ sp_CreateProcess(PyObject* self, PyObject* args) } if (environment) { - wenvironment = PyUnicode_AsUnicode(environment) + wenvironment = PyUnicode_AsUnicode(environment); if (wenvironment == NULL) { Py_XDECREF(environment); -- cgit v0.12