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 2db38ff commit c206494Copy full SHA for c206494
qiling/utils.py
@@ -256,8 +256,8 @@ def debugger_convert_str(debugger_id):
256
def ql_get_module_function(module_name, function_name = None):
257
try:
258
imp_module = importlib.import_module(module_name)
259
- except:
260
- raise QlErrorModuleNotFound("[!] Unable to import module %s" % module_name)
+ except Exception as ex:
+ raise QlErrorModuleNotFound("[!] Unable to import module %s (%s)" % (module_name, ex))
261
262
263
module_function = getattr(imp_module, function_name)
0 commit comments