Skip to content

Commit

Permalink
pls
Browse files Browse the repository at this point in the history
  • Loading branch information
lgarber-akamai committed Jan 30, 2025
1 parent 98c98ca commit 4bc7fcd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion linodecli/plugins/obj/objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,8 @@ def upload_object(
)
try:
client.upload_file(**upload_options)
except S3UploadFailedError:
except S3UploadFailedError as err:
print(f"failed to upload file: {err}")
sys.exit(ExitCodes.REQUEST_FAILED)

print("Done.")
Expand Down

0 comments on commit 4bc7fcd

Please sign in to comment.