summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2007-11-13 02:34:21 (GMT)
committerChristian Heimes <christian@cheimes.de>2007-11-13 02:34:21 (GMT)
commitdb23308c7111239fadbc4ac95da38ec22a9bbf88 (patch)
tree07e4bb51228fd1b767ca81f6de0e4eafa83b4a72 /Python
parent58cb1b8b0ef200b7f7d4aba82642a63ce7532545 (diff)
downloadcpython-db23308c7111239fadbc4ac95da38ec22a9bbf88.zip
cpython-db23308c7111239fadbc4ac95da38ec22a9bbf88.tar.gz
cpython-db23308c7111239fadbc4ac95da38ec22a9bbf88.tar.bz2
Fixed space -> tab
Diffstat (limited to 'Python')
-rw-r--r--Python/pythonrun.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 82f8e37..044c4a9 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);