def load_plugin(self, plugin, found_plugin):
try:
module = imp.load_module(plugin, found_plugin[0], found_plugin[1], found_plugin[2])
except ImportError as err:
print "[i] ImportError for '{0}'".format(found_plugin[0], err)
print traceback.print_exc()
return
except TypeError as err:
print "[i] TypeError for '{0}'".format(found_plugin[0], err)
print traceback.format_exc()
return
except Exception as err:
print "[i] Misc. Error for '{0}'".format(found_plugin[0], err)
print traceback.format_exc()
return
return module
评论列表
文章目录