summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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);