summaryrefslogtreecommitdiffstats
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-05-22 20:21:30 (GMT)
committerGuido van Rossum <guido@python.org>1997-05-22 20:21:30 (GMT)
commit23c9446d9ab4b063211327a6f81eddf920c801ca (patch)
tree542e8e15f48acbb9dcd815a672758cc8c16ff5ba /Python/pythonrun.c
parentcbf1b9c40e70e01c23b41080f2d6a5a1b91e815d (diff)
downloadcpython-23c9446d9ab4b063211327a6f81eddf920c801ca.zip
cpython-23c9446d9ab4b063211327a6f81eddf920c801ca.tar.gz
cpython-23c9446d9ab4b063211327a6f81eddf920c801ca.tar.bz2
Added a space in an error message
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r--Python/pythonrun.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 138bc3f..f5405a3 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -618,7 +618,7 @@ Py_FatalError(msg)
for (;;);
#endif
#ifdef MS_WIN32
- OutputDebugString("Fatal Python error:");
+ OutputDebugString("Fatal Python error: ");
OutputDebugString(msg);
OutputDebugString("\n");
#endif