From: Barry Warsaw Date: Fri, 18 Aug 2000 05:07:12 +0000 (+0000) Subject: init_locale(): This file defines the _locale module, so the X-Git-Tag: v2.0b1~376 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fc4514c22b0c4a84c3e2c66a12893d81492f5224;p=thirdparty%2FPython%2Fcpython.git init_locale(): This file defines the _locale module, so the Py_FatalError() should reflect that. --- diff --git a/Modules/_localemodule.c b/Modules/_localemodule.c index 030f9d6e593f..5dabfca21757 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"); }