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 e832bef commit 65dc9edCopy full SHA for 65dc9ed
cppimport/importer.py
@@ -64,9 +64,9 @@ def try_load(module_data):
64
try:
65
load_module(module_data)
66
return True
67
- except ImportError:
+ except ImportError as e:
68
quiet_print(
69
- "ImportError during import with matching checksum. Trying to rebuild."
+ f"ImportError during import with matching checksum: {e}. Trying to rebuild."
70
)
71
return False
72
0 commit comments