From: Christian Heimes Date: Tue, 13 Nov 2007 02:34:21 +0000 (+0000) Subject: Fixed space -> tab X-Git-Tag: v3.0a2~193 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=db23308c7111239fadbc4ac95da38ec22a9bbf88;p=thirdparty%2FPython%2Fcpython.git Fixed space -> tab --- diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 82f8e373cafd..044c4a90d9b2 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -808,15 +808,15 @@ initstdio(void) goto error; } } /* if (fd < 0) */ - PySys_SetObject("__stderr__", std); + PySys_SetObject("__stderr__", std); PySys_SetObject("stderr", std); Py_DECREF(std); #endif if (0) { error: - status = -1; - } + status = -1; + } Py_XDECREF(bimod); Py_XDECREF(iomod);