diff options
author | Fred Drake <fdrake@acm.org> | 2003-07-11 15:01:02 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2003-07-11 15:01:02 (GMT) |
commit | 1e5fc55c4dcddcd97951d54c04b321c0a284affa (patch) | |
tree | 882f4a236c453289ad9e4dbff3d32d2f0e5d07f1 /Python | |
parent | a1e93e8dfc6daf78a8a46c41aca6e85cede74c02 (diff) | |
download | cpython-1e5fc55c4dcddcd97951d54c04b321c0a284affa.zip cpython-1e5fc55c4dcddcd97951d54c04b321c0a284affa.tar.gz cpython-1e5fc55c4dcddcd97951d54c04b321c0a284affa.tar.bz2 |
- 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
Diffstat (limited to 'Python')
-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 80fe5b7..858f9e5 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) */ |