Skip to content

Commit 0e5796f

Browse files
committed
Fix incorrect comment in _decodeExtra
1 parent ab99c2a commit 0e5796f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/zipfile/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2665,7 +2665,7 @@ def _write_end_record(self):
26652665
extra_data = zinfo.extra
26662666
min_version = 0
26672667
if extra:
2668-
# Append a ZIP64 field to the extra's
2668+
# Prepend a ZIP64 field to the extra's
26692669
extra_data = _Extra.strip(extra_data, (1,))
26702670
extra_data = struct.pack(
26712671
'<HH' + 'Q'*len(extra),

0 commit comments

Comments
 (0)