Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion elementary/clients/gcs/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def send_report(
bucket_website_url = None
bucket_report_path = remote_bucket_file_path or report_filename
logger.info(f'Uploading to GCS bucket "{self.config.gcs_bucket_name}"')
bucket = self.client.get_bucket(self.config.gcs_bucket_name)
bucket = self.client.bucket(self.config.gcs_bucket_name)
blob = bucket.blob(bucket_report_path)
blob.upload_from_filename(
local_html_file_path,
Expand Down