From 23c9446d9ab4b063211327a6f81eddf920c801ca Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 22 May 1997 20:21:30 +0000 Subject: [PATCH] Added a space in an error message --- Python/pythonrun.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 138bc3f82ef..f5405a38346 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