]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
init_locale(): This file defines the _locale module, so the
authorBarry Warsaw <barry@python.org>
Fri, 18 Aug 2000 05:07:12 +0000 (05:07 +0000)
committerBarry Warsaw <barry@python.org>
Fri, 18 Aug 2000 05:07:12 +0000 (05:07 +0000)
Py_FatalError() should reflect that.

Modules/_localemodule.c

index 030f9d6e593f0cd539bafcb4b37177889ce7a796..5dabfca21757ad222a187d3778a6b3aa6e8ef1b8 100644 (file)
@@ -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");
 }