We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f8a223 commit 15e000bCopy full SHA for 15e000b
1 file changed
src/nypl_py_utils/classes/s3_client.py
@@ -76,7 +76,7 @@ def upload_file(self, content, file_path):
76
bucket. Example: "subdirectory/example_file.csv"
77
"""
78
self.logger.info(
79
- f'Writing {file_path} in S3 bucket {self.s3_client.name}')
+ f'Writing {file_path} in S3 bucket {self.bucket}')
80
try:
81
input_stream = BytesIO(content.encode())
82
self.s3_client.upload_fileobj(input_stream, self.bucket, file_path)
0 commit comments