eric6/Utilities/BackgroundClient.py

changeset 8267
6baca884c73a
parent 8264
f95dde35d0ab
child 8273
698ae46f40a4
child 8307
01a323d3d4d7
--- 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)
 

eric ide

mercurial