File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 1+ 25.1.1 (October 21, 2025)
2+ =========================
3+ Patch release to remove use of Python 3.13+ parameter.
4+
1525.1.0 (October 21, 2025)
26=========================
37New feature release in the 25.1 series.
Original file line number Diff line number Diff line change @@ -472,7 +472,7 @@ def _truncate_s3_errors(filepaths):
472472 List of file paths to check and truncate if necessary.
473473 """
474474 for filepath in filepaths :
475- if filepath .is_file (follow_symlinks = False ) and 0 < filepath .stat ().st_size < 1024 :
475+ if filepath .is_file () and 0 < filepath .stat ().st_size < 1024 :
476476 with open (filepath , 'rb' ) as f :
477477 content = f .read (100 )
478478 if content .startswith (b'<?xml' ) and b'<Error><Code>' in content :
You can’t perform that action at this time.
0 commit comments