Skip to content

Commit 2386ea9

Browse files
debug
1 parent fb457ac commit 2386ea9

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

test_vector_handlers/src/awses_test_vectors/commands/full_message_decrypt.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
try:
99
import aws_cryptographic_materialproviders # noqa pylint: disable=unused-import,import-error
1010
_HAS_MPL = True
11-
except ImportError:
11+
except ImportError as e:
12+
print(e)
1213
_HAS_MPL = False
1314

1415

test_vector_handlers/src/awses_test_vectors/commands/full_message_decrypt_generate.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
try:
99
import aws_cryptographic_materialproviders # noqa pylint: disable=unused-import,import-error
1010
_HAS_MPL = True
11-
except ImportError:
11+
except ImportError as e:
12+
print(e)
1213
_HAS_MPL = False
1314

1415
try: # Python 3.5.0 and 3.5.1 have incompatible typing modules

test_vector_handlers/src/awses_test_vectors/commands/full_message_encrypt.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
try:
99
import aws_cryptographic_materialproviders # noqa pylint: disable=unused-import,import-error
1010
_HAS_MPL = True
11-
except ImportError:
11+
except ImportError as e:
12+
print(e)
1213
_HAS_MPL = False
1314

1415

test_vector_handlers/src/awses_test_vectors/manifests/full_message/decrypt.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@
3838
)
3939

4040
_HAS_MPL = True
41-
except ImportError:
41+
except ImportError as e:
42+
print(e)
4243
_HAS_MPL = False
4344

4445

test_vector_handlers/src/awses_test_vectors/manifests/full_message/decrypt_generation.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@
4141
)
4242

4343
_HAS_MPL = True
44-
except ImportError:
44+
except ImportError as e:
45+
print(e)
4546
_HAS_MPL = False
4647

4748

test_vector_handlers/src/awses_test_vectors/manifests/full_message/encrypt.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@
4040
from awses_test_vectors.manifests.mpl_keyring import KeyringSpec, keyring_from_master_key_specs
4141

4242
_HAS_MPL = True
43-
except ImportError:
43+
except ImportError as e:
44+
print(e)
4445
_HAS_MPL = False
4546

4647

0 commit comments

Comments
 (0)