
python-checkins at python
May 5, 2012, 3:27 AM
Views: 37
Permalink
|
|
cpython: Fix typo in changeset eb5c5c23ca9b.
|
|
http://hg.python.org/cpython/rev/babe4dd3fe0d changeset: 76768:babe4dd3fe0d user: Nadeem Vawda <nadeem.vawda [at] gmail> date: Sat May 05 12:27:30 2012 +0200 summary: Fix typo in changeset eb5c5c23ca9b. files: Python/import.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -181,7 +181,7 @@ error: PyErr_Print(); Py_FatalError("initializing sys.meta_path, sys.path_hooks, " - "or path_importer_cache"); + "or path_importer_cache failed"); } Py_DECREF(path_hooks); } -- Repository URL: http://hg.python.org/cpython
|