From: Guido van Rossum Date: Thu, 21 Aug 1997 02:28:19 +0000 (+0000) Subject: Added missing newline to warning msg X-Git-Tag: v1.5a4~348 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5f896a4de06b730df4cd19f48d109fff923bf619;p=thirdparty%2FPython%2Fcpython.git Added missing newline to warning msg --- diff --git a/Python/pystate.c b/Python/pystate.c index 138dc0989d9c..bdb456b0694c 100644 --- a/Python/pystate.c +++ b/Python/pystate.c @@ -151,7 +151,7 @@ PyThreadState_Clear(tstate) { if (tstate->frame != NULL) fprintf(stderr, - "PyThreadState_Clear: warning: thread still has a frame"); + "PyThreadState_Clear: warning: thread still has a frame\n"); ZAP(tstate->frame);