From aaac80277cb1646bf7857ba6408170a39fff7b31 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(-) (limited to 'Python/pystate.c') diff --git a/Python/pystate.c b/Python/pystate.c index 138dc0989d..bdb456b069 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 v1.2.1