Skip to content

Commit cd96b62

Browse files
[py] disable strict time stamps in Firefox profile (#14168)
* allow zipping profiles with files and directories stamped earlier than 1980 --------- Co-authored-by: Titus Fortner <[email protected]>
1 parent 84828cd commit cd96b62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py/selenium/webdriver/firefox/firefox_profile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def encoded(self) -> str:
152152
if self._desired_preferences:
153153
self.update_preferences()
154154
fp = BytesIO()
155-
with zipfile.ZipFile(fp, "w", zipfile.ZIP_DEFLATED) as zipped:
155+
with zipfile.ZipFile(fp, "w", zipfile.ZIP_DEFLATED, strict_timestamps=False) as zipped:
156156
path_root = len(self.path) + 1 # account for trailing slash
157157
for base, _, files in os.walk(self.path):
158158
for fyle in files:

0 commit comments

Comments
 (0)