We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
boto3
1 parent 5878f97 commit fcbc407Copy full SHA for fcbc407
linodecli/plugins/obj/objects.py
@@ -7,8 +7,13 @@
7
from pathlib import Path
8
from typing import List
9
10
-from boto3.exceptions import S3UploadFailedError
11
-from boto3.s3.transfer import MB, TransferConfig
+try:
+ from boto3.exceptions import S3UploadFailedError
12
+ from boto3.s3.transfer import MB, TransferConfig
13
+except:
14
+ # this has been handled in `call` function
15
+ # by print an error message
16
+ pass
17
18
from linodecli.helpers import expand_globs
19
from linodecli.plugins import inherit_plugin_args
0 commit comments