Skip to content

Commit

Permalink
SQUASHME: Add zip64 default back to FileHeader
Browse files Browse the repository at this point in the history
  • Loading branch information
pR0Ps committed May 1, 2023
1 parent d24c6a4 commit 9b66476
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/zipfile/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ def __repr__(self):
result.append('>')
return ''.join(result)

def FileHeader(self, zip64):
def FileHeader(self, zip64=False):
"""Return the per-file header as a bytes object."""
dt = self.date_time
dosdate = (dt[0] - 1980) << 9 | dt[1] << 5 | dt[2]
Expand Down

0 comments on commit 9b66476

Please sign in to comment.