235 @return flag indicating a successful client start and the exit code |
235 @return flag indicating a successful client start and the exit code |
236 in case of an issue |
236 in case of an issue |
237 @rtype bool, int |
237 @rtype bool, int |
238 """ |
238 """ |
239 if interpreter == "" or not FileSystemUtilities.isinpath(interpreter): |
239 if interpreter == "" or not FileSystemUtilities.isinpath(interpreter): |
240 return False |
240 return False, -1 |
241 |
241 |
242 exitCode = None |
242 exitCode = None |
243 |
243 |
244 proc = QProcess() |
244 proc = QProcess() |
245 proc.setProcessChannelMode(QProcess.ProcessChannelMode.ForwardedChannels) |
245 proc.setProcessChannelMode(QProcess.ProcessChannelMode.ForwardedChannels) |