summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2016-01-18 07:00:15 (GMT)
committerGeorg Brandl <georg@python.org>2016-01-18 07:00:15 (GMT)
commit4b5b06203e4dbe24579101e5d889080c43854453 (patch)
tree4c930c606febe1645be34e52d3725aed6ea29abf /Python
parent5c60ea3fa1e40c6a3a2e0e9da71f55f8d7d6b2b1 (diff)
downloadcpython-4b5b06203e4dbe24579101e5d889080c43854453.zip
cpython-4b5b06203e4dbe24579101e5d889080c43854453.tar.gz
cpython-4b5b06203e4dbe24579101e5d889080c43854453.tar.bz2
Fix indentation of continuation lines.
Diffstat (limited to 'Python')
-rw-r--r--Python/pylifecycle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pylifecycle.c b/Python/pylifecycle.c
index c84c46a..e9db7f6 100644
--- a/Python/pylifecycle.c
+++ b/Python/pylifecycle.c
@@ -796,7 +796,7 @@ Py_NewInterpreter(void)
if (initstdio() < 0)
Py_FatalError(
- "Py_Initialize: can't initialize sys standard streams");
+ "Py_Initialize: can't initialize sys standard streams");
initmain(interp);
if (!Py_NoSiteFlag)
initsite();