From 5f896a4de06b730df4cd19f48d109fff923bf619 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 21 Aug 1997 02:28:19 +0000 Subject: Added missing newline to warning msg --- Python/pystate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/pystate.c b/Python/pystate.c index 138dc09..bdb456b 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); -- cgit v0.12