diff options
author | Christian Heimes <christian@cheimes.de> | 2007-11-13 02:34:21 +0000 |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2007-11-13 02:34:21 +0000 |
commit | f5dc3d34b5f904020812a336548bd91cee5a5d4b (patch) | |
tree | ae17a14197067f1b54bac46fbb2bc9152e3b05c2 /Python/pythonrun.c | |
parent | 0fa8e2c833b1e14af03306741b57559ce913f666 (diff) | |
download | cpython-f5dc3d34b5f904020812a336548bd91cee5a5d4b.tar.gz |
Fixed space -> tab
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 82f8e373ca..044c4a90d9 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); |