From 307e55353432f6adcc2314ea86252906d33995c9 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Sat, 17 Oct 2020 12:03:33 -0300 Subject: [PATCH] Added more info to the plug-ins load fail. Trying to see why it fails (not in my docker image?!) --- kibot/kiplot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kibot/kiplot.py b/kibot/kiplot.py index 31ebb5e3..c0d0457e 100644 --- a/kibot/kiplot.py +++ b/kibot/kiplot.py @@ -59,9 +59,9 @@ def _import(name, path): mod = module_from_spec(spec) try: spec.loader.exec_module(mod) - except ImportError: + except ImportError as e: trace_dump() - logger.error('Unable to import plug-ins') + logger.error('Unable to import plug-ins: '+str(e)) exit(WRONG_INSTALL)