commit | dcbbd9ea21fdeb0298e5baca82eeca1b3d7882cc | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@haypocalc.com> | Mon Nov 21 02:17:08 2011 +0100 |
committer | Victor Stinner <victor.stinner@haypocalc.com> | Mon Nov 21 02:17:08 2011 +0100 |
tree | afeb770db80be7fcd66f2decd0f244eb7f7f2734 | |
parent | ea90e0fd9568bb8faedbe84d20c48ff595b6736f [diff] |
Fix a typo in PC/_subprocess.c
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 @@ } if (environment) { - wenvironment = PyUnicode_AsUnicode(environment) + wenvironment = PyUnicode_AsUnicode(environment); if (wenvironment == NULL) { Py_XDECREF(environment);