diff options
author | Nadeem Vawda <nadeem.vawda@gmail.com> | 2012-05-05 10:27:30 (GMT) |
---|---|---|
committer | Nadeem Vawda <nadeem.vawda@gmail.com> | 2012-05-05 10:27:30 (GMT) |
commit | 8f46d655b96eea58e3a0ca8af1461b012a92a3d0 (patch) | |
tree | 8ace1a1a5ca7d11a5f3e43b685939db6915b26a2 /Python/import.c | |
parent | c04ddee8397d0d16d8c489251775101468ac3f8e (diff) | |
download | cpython-8f46d655b96eea58e3a0ca8af1461b012a92a3d0.zip cpython-8f46d655b96eea58e3a0ca8af1461b012a92a3d0.tar.gz cpython-8f46d655b96eea58e3a0ca8af1461b012a92a3d0.tar.bz2 |
Fix typo in changeset eb5c5c23ca9b.
Diffstat (limited to 'Python/import.c')
-rw-r--r-- | Python/import.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c index 920d304..ccba106 100644 --- a/Python/import.c +++ b/Python/import.c @@ -181,7 +181,7 @@ _PyImportHooks_Init(void) 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); } |