mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Fix a warning.
This commit is contained in:
parent
7fcb3bfadd
commit
7f8ed815db
1 changed files with 1 additions and 1 deletions
|
@ -1129,7 +1129,7 @@ get_module_code(ZipImporter *self, char *fullname,
|
|||
if (Py_VerboseFlag > 1)
|
||||
PySys_WriteStderr("# trying %s%c%s\n",
|
||||
_PyUnicode_AsString(self->archive),
|
||||
SEP, path);
|
||||
(int)SEP, path);
|
||||
toc_entry = PyDict_GetItemString(self->files, path);
|
||||
if (toc_entry != NULL) {
|
||||
time_t mtime = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue