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 dde0a68 commit ecd5878Copy full SHA for ecd5878
keyauth.py
@@ -20,8 +20,8 @@
20
from Crypto.Util.Padding import pad, unpad
21
from requests_toolbelt.adapters.fingerprint import FingerprintAdapter
22
import requests
23
-except Exception as f:
24
- print("Exception when importing modules: " + str(f))
+except ModuleNotFoundError:
+ print("Exception when importing modules")
25
print("installing necessary modules....")
26
os.system("pip install pycryptodome")
27
os.system("pip install requests_toolbelt")
0 commit comments