We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b05f32 commit 359d81cCopy full SHA for 359d81c
snapshot/render_flat.py
@@ -379,7 +379,7 @@ def check_file_exists(full_loc: str) -> bool:
379
True if the file is found and false otherwise.
380
"""
381
try:
382
- s3_client.head_object(bucket=bucket, key=full_loc)
+ s3_client.head_object(Bucket=bucket, Key=full_loc)
383
return True
384
except botocore.exceptions.ClientError as e:
385
error_code = e.response['Error']['Code']
0 commit comments