Skip to content

Commit

Permalink
commit did not send
Browse files Browse the repository at this point in the history
  • Loading branch information
martindurant committed Jan 4, 2023
1 parent 59f9839 commit 9bf99f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion s3fs/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -1544,7 +1544,7 @@ async def _chmod(self, path, acl, recursive=False, **kwargs):
bucket, key, version_id = self.split_path(path)
if recursive:
allfiles = await self._find(path, withdirs=False)
await asyncio.gather(*[self._chmod(p, recursive=False) for p in allfiles])
await asyncio.gather(*[self._chmod(p, acl, recursive=False) for p in allfiles])
elif key:
if acl not in key_acls:
raise ValueError("ACL not in %s", key_acls)
Expand Down

0 comments on commit 9bf99f7

Please sign in to comment.