src/eric7/RemoteServer/EricServerDebuggerRequestHandler.py

branch
eric7
changeset 10962
b56b76c0221b
parent 10961
7bbf95f41266
child 10965
f80b241605c9
equal deleted inserted replaced
10961:7bbf95f41266 10962:b56b76c0221b
324 stderr=subprocess.PIPE, 324 stderr=subprocess.PIPE,
325 cwd=workingDir, 325 cwd=workingDir,
326 env=clientEnv, 326 env=clientEnv,
327 ) 327 )
328 except (OSError, ValueError, subprocess.SubprocessError) as err: 328 except (OSError, ValueError, subprocess.SubprocessError) as err:
329 self.sendError(request="StartClient", errorMessage=str(err)) 329 self.sendError(request="StartClientError", errorMessage=str(err))
330 330
331 def __stopClient(self, params): # noqa: U100 331 def __stopClient(self, params): # noqa: U100
332 """ 332 """
333 Private method to stop the current debug client process. 333 Private method to stop the current debug client process.
334 334

eric ide

mercurial