--- a/eric6/Utilities/BackgroundClient.py Tue Apr 27 17:25:30 2021 +0200 +++ b/eric6/Utilities/BackgroundClient.py Tue Apr 27 17:42:00 2021 +0200 @@ -66,8 +66,8 @@ importedModule.initBatchService() ) return 'ok' - except ImportError: - return 'Import Error' + except ImportError as err: + return 'Import Error: ' + str(err) except Exception as err: return str(err)