From fc4514c22b0c4a84c3e2c66a12893d81492f5224 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Fri, 18 Aug 2000 05:07:12 +0000 Subject: [PATCH] init_locale(): This file defines the _locale module, so the Py_FatalError() should reflect that. --- Modules/_localemodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_localemodule.c b/Modules/_localemodule.c index 030f9d6e59..5dabfca217 100644 --- a/Modules/_localemodule.c +++ b/Modules/_localemodule.c @@ -454,5 +454,5 @@ init_locale(void) Py_XDECREF(x); if (PyErr_Occurred()) - Py_FatalError("Can't initialize module locale"); + Py_FatalError("Can't initialize module _locale"); } -- 2.40.0