From 83dd6c319e8c353b185038064e57282d8e396107 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 29 Sep 1994 09:38:33 +0000 Subject: * Python/pythonrun.c: add string "Python" to fatal error message --- Python/pythonrun.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 978e4b8..712a396 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -513,7 +513,7 @@ void fatal(msg) char *msg; { - fprintf(stderr, "Fatal error: %s\n", msg); + fprintf(stderr, "Fatal Python error: %s\n", msg); abort(); } -- cgit v0.12