diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-11-21 01:17:08 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-11-21 01:17:08 (GMT) |
commit | dcbbd9ea21fdeb0298e5baca82eeca1b3d7882cc (patch) | |
tree | afeb770db80be7fcd66f2decd0f244eb7f7f2734 /PC | |
parent | ea90e0fd9568bb8faedbe84d20c48ff595b6736f (diff) | |
download | cpython-dcbbd9ea21fdeb0298e5baca82eeca1b3d7882cc.zip cpython-dcbbd9ea21fdeb0298e5baca82eeca1b3d7882cc.tar.gz cpython-dcbbd9ea21fdeb0298e5baca82eeca1b3d7882cc.tar.bz2 |
Fix a typo in PC/_subprocess.c
Diffstat (limited to 'PC')
-rw-r--r-- | PC/_subprocess.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |