--- a/src/eric7/DebugClients/Python/DebugClientBase.py Tue Jan 10 13:11:52 2023 +0100 +++ b/src/eric7/DebugClients/Python/DebugClientBase.py Wed Jan 11 15:03:59 2023 +0100 @@ -24,6 +24,10 @@ import traceback import types +# modify sys.path to get access to the 'coverage' package +sys.path.append(os.path.join(os.path.dirname(__file__), "..", "..", "..")) +# site-packages is three levels up + import DebugClientCapabilities import DebugVariables