Added missing newline to warning msg

This commit is contained in:
Guido van Rossum 1997-08-21 02:28:19 +00:00
parent 8456161fcd
commit 5f896a4de0

View file

@ -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);