From 1e5fc55c4dcddcd97951d54c04b321c0a284affa Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Fri, 11 Jul 2003 15:01:02 +0000 Subject: [PATCH] - fix typo - there's a weird variable name here (zimpimport), but I'll leave that for someone that's familiar with the ZIP import support --- Python/import.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/import.c b/Python/import.c index 80fe5b7d5e8..858f9e57c41 100644 --- a/Python/import.c +++ b/Python/import.c @@ -202,7 +202,7 @@ _PyImportHooks_Init(void) PyErr_Clear(); /* No zipimporter object -- okay */ if (Py_VerboseFlag) PySys_WriteStderr( - "# can't import zipimport.zimimporter\n"); + "# can't import zipimport.zipimporter\n"); } else { /* sys.path_hooks.append(zipimporter) */