From: Guido van Rossum Date: Thu, 22 May 1997 20:21:30 +0000 (+0000) Subject: Added a space in an error message X-Git-Tag: v1.5a3~485 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=23c9446d9ab4b063211327a6f81eddf920c801ca;p=python Added a space in an error message --- diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 138bc3f82e..f5405a3834 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