summaryrefslogtreecommitdiff
path: root/PC
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-11-21 02:17:08 +0100
committerVictor Stinner <victor.stinner@haypocalc.com>2011-11-21 02:17:08 +0100
commitdcbbd9ea21fdeb0298e5baca82eeca1b3d7882cc (patch)
treeafeb770db80be7fcd66f2decd0f244eb7f7f2734 /PC
parentea90e0fd9568bb8faedbe84d20c48ff595b6736f (diff)
downloadcpython-git-dcbbd9ea21fdeb0298e5baca82eeca1b3d7882cc.tar.gz
Fix a typo in PC/_subprocess.c
Diffstat (limited to 'PC')
-rw-r--r--PC/_subprocess.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/_subprocess.c b/PC/_subprocess.c
index ec93d25957..fdcc55bd24 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);