src/eric7/Debugger/DebuggerInterfacePython.py

branch
eric7
changeset 10309
507cafd305f6
parent 10289
490388ca210c
child 10311
0a141f9ae677
--- a/src/eric7/Debugger/DebuggerInterfacePython.py	Mon Nov 13 11:53:55 2023 +0100
+++ b/src/eric7/Debugger/DebuggerInterfacePython.py	Tue Nov 14 16:08:32 2023 +0100
@@ -409,7 +409,10 @@
 
         # start debugger with project specific settings
         debugClient = project.getDebugProperty("DEBUGCLIENT")
-        if not bool(debugClient) or not os.path.exists(debugClient):
+        if not bool(debugClient) or (
+            not project.getDebugProperty("REMOTEDEBUGGER")
+            and not os.path.exists(debugClient)
+        ):
             debugClient = self.__determineDebugClient()
 
         redirect = (

eric ide

mercurial