summaryrefslogtreecommitdiffstats
path: root/gallery_dl/aes.py
diff options
context:
space:
mode:
Diffstat (limited to 'gallery_dl/aes.py')
-rw-r--r--gallery_dl/aes.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/gallery_dl/aes.py b/gallery_dl/aes.py
index 891104a..6727541 100644
--- a/gallery_dl/aes.py
+++ b/gallery_dl/aes.py
@@ -14,6 +14,13 @@ except ImportError:
from Crypto.Cipher import AES as Cryptodome_AES
except ImportError:
Cryptodome_AES = None
+except Exception as exc:
+ Cryptodome_AES = None
+ import logging
+ logging.getLogger("aes").warning(
+ "Error when trying to import 'Cryptodome' module (%s: %s)",
+ exc.__class__.__name__, exc)
+ del logging
if Cryptodome_AES: