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.
1 parent 818da99 commit 49c14f8Copy full SHA for 49c14f8
nipype/interfaces/tests/test_io.py
@@ -23,15 +23,15 @@
23
try:
24
import boto
25
from boto.s3.connection import S3Connection, OrdinaryCallingFormat
26
-except:
+except ImportError:
27
noboto = True
28
29
# Check for boto3
30
noboto3 = False
31
32
import boto3
33
from botocore.utils import fix_s3_host
34
35
noboto3 = True
36
37
# Check for fakes3
@@ -42,7 +42,7 @@
42
fakes3 = True
43
else:
44
fakes3 = False
45
+except subprocess.CalledProcessError:
46
47
48
def test_datagrabber():
0 commit comments